diff --git a/.github/workflows/ftest.yaml b/.github/workflows/ftest.yaml deleted file mode 100644 index 77e0d34e66..0000000000 --- a/.github/workflows/ftest.yaml +++ /dev/null @@ -1,165 +0,0 @@ -name: Functional tests - -on: - pull_request: - branches: - - maintenance-3.0.x - workflow_call: - inputs: - branch: - description: 'The current branch' - default: maintenance-3.0.x - type: string - required: false - secrets: - NPM_PACKAGES_TOKEN: - description: 'NPM_PACKAGES_TOKEN' - required: true - PACKAGES_AUTH_USER: - description: 'PACKAGES_AUTH_USER' - required: true - PACKAGES_AUTH_TOKEN: - description: 'PACKAGES_AUTH_TOKEN' - required: true - -env: - REFERENCE_BRANCH: maintenance-3.0.x - NPM_REPOSITORY: https://packages.nuxeo.com/repository/npm-public/ - BRANCH_NAME: ${{ github.head_ref || inputs.branch || 'maintenance-3.0.x' }} - -jobs: - ftests: - runs-on: [ self-hosted, master ] - steps: - - uses: actions/checkout@v2 - with: - ref: ${{ env.BRANCH_NAME }} - - - uses: actions/setup-node@v3 - with: - registry-url: ${{ env.NPM_REPOSITORY }} - scope: '@nuxeo' - node-version: 18 - - - uses: actions/setup-java@v2 - with: - distribution: 'zulu' - java-version: '11' - - - name: Determine nuxeo-elements branch to link - id: pick_nuxeo_elements_branch - run: | - if git ls-remote --exit-code --heads https://github.com/nuxeo/nuxeo-elements ${{ env.BRANCH_NAME }}; then - echo ::set-output name=branch::${{ env.BRANCH_NAME }} - else - echo ::set-output name=branch::${{ env.REFERENCE_BRANCH }} - fi - - - name: Install Web UI - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} - run: | - npm install - pushd packages/nuxeo-web-ui-ftest - npm install - popd - pushd packages/nuxeo-designer-catalog - npm install - popd - - - name: Checkout the nuxeo-elements repo - uses: actions/checkout@v2 - with: - repository: nuxeo/nuxeo-elements - path: nuxeo-elements - fetch-depth: 1 - ref: ${{ steps.pick_nuxeo_elements_branch.outputs.branch }} - - - name: Pack Elements modules - run: | - pushd nuxeo-elements - pushd core - echo "ELEMENTS_CORE=$(npm pack 2>&1 | tail -1)" >> $GITHUB_ENV - popd - - pushd ui - echo "ELEMENTS_UI=$(npm pack 2>&1 | tail -1)" >> $GITHUB_ENV - popd - - pushd dataviz - echo "ELEMENTS_DATAVIZ=$(npm pack 2>&1 | tail -1)" >> $GITHUB_ENV - popd - - pushd testing-helpers - echo "ELEMENTS_HELPERS=$(npm pack 2>&1 | tail -1)" >> $GITHUB_ENV - popd - popd - - - name: Add .npmrc - run: | - pushd /tmp/_temp/ - rm .npmrc - touch .npmrc - popd - echo ' - packages.nuxeo.com/repository/npm-public/:_auth=${NODE_AUTH_TOKEN} - @nuxeo:registry=https://packages.nuxeo.com/repository/npm-public/ - always-auth=true - ' >> /tmp/_temp/.npmrc - - - name: Link elements to Web UI - run: | - npm install --no-package-lock --@nuxeo:registry="${{ env.NPM_REPOSITORY }}" nuxeo-elements/core/${ELEMENTS_CORE} - npm install --no-package-lock --@nuxeo:registry="${{ env.NPM_REPOSITORY }}" nuxeo-elements/ui/${ELEMENTS_UI} - npm install --no-package-lock --@nuxeo:registry="${{ env.NPM_REPOSITORY }}" nuxeo-elements/dataviz/${ELEMENTS_DATAVIZ} - npm install --no-package-lock --@nuxeo:registry="${{ env.NPM_REPOSITORY }}" nuxeo-elements/testing-helpers/${ELEMENTS_HELPERS} - - - name: 'Update settings.xml with server configuration' - run: | - echo ' - - - maven-internal - ${{ secrets.PACKAGES_AUTH_USER }} - ${{ secrets.PACKAGES_AUTH_TOKEN }} - - - ' > ~/.m2/settings.xml - - - name: Functional tests - env: - RUN_ALL: false - BAIL: 0 - run: mvn -ntp install -Pftest -DskipInstall - - - name: Archive cucumber reports - if: ${{ always() }} - uses: actions/upload-artifact@v3 - with: - name: cucumber-reports - path: ftest/target/cucumber-reports/ - - - name: Archive screenshots - if: ${{ failure() }} - uses: actions/upload-artifact@v3 - with: - name: screenshots - path: ftest/target/screenshots/ - - - name: Archive logs - if: ${{ always() }} - uses: actions/upload-artifact@v3 - with: - name: logs - path: | - **/log/*.log - **/nxserver/config/distribution.properties - - - name: Archive packages - if: ${{ always() }} - uses: actions/upload-artifact@v3 - with: - name: packages - path: | - plugin/web-ui/marketplace/target/nuxeo-web-ui-marketplace-*.zip - plugin/itests/marketplace/target/nuxeo-web-ui-marketplace-itests-*.zip \ No newline at end of file diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml deleted file mode 100644 index dd625b005d..0000000000 --- a/.github/workflows/lint.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: Lint - -on: - pull_request: - branches: - - maintenance-3.0.x - workflow_call: - inputs: - branch: - description: 'The current branch' - default: maintenance-3.0.x - type: string - required: false - secrets: - NPM_PACKAGES_TOKEN: - description: 'NPM_PACKAGES_TOKEN' - required: true - -env: - BRANCH_NAME: ${{ github.head_ref || inputs.branch || 'maintenance-3.0.x' }} - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - ref: ${{ env.BRANCH_NAME }} - - - uses: actions/setup-node@v3 - with: - registry-url: 'https://packages.nuxeo.com/repository/npm-public/' - node-version: 18 - scope: '@nuxeo' - - - name: Install - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm install - - - name: Lint - run: npm run lint diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml deleted file mode 100644 index a5d475d62f..0000000000 --- a/.github/workflows/test.yaml +++ /dev/null @@ -1,48 +0,0 @@ -name: Test - -on: - pull_request: - branches: - - maintenance-3.0.x - workflow_call: - inputs: - branch: - description: 'The current branch' - default: maintenance-3.0.x - type: string - required: false - secrets: - NPM_PACKAGES_TOKEN: - description: 'NPM_PACKAGES_TOKEN' - required: true - SAUCE_ACCESS_KEY: - description: 'SAUCE_ACCESS_KEY' - required: true - -env: - BRANCH_NAME: ${{ github.head_ref || inputs.branch || 'maintenance-3.0.x' }} - -jobs: - unit-test: - runs-on: [ self-hosted, master ] - steps: - - uses: actions/checkout@v2 - with: - ref: ${{ env.BRANCH_NAME }} - - - uses: actions/setup-node@v3 - with: - registry-url: 'https://packages.nuxeo.com/repository/npm-public/' - scope: '@nuxeo' - node-version: 18 - - - name: Install - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm install - - - name: Unit tests - env: - SAUCE_USERNAME: nuxeo-web-ui - SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} - run: npm run test diff --git a/README.md b/README.md index e06dbaedff..0ee10c12da 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,6 @@ All Hyland product names are registered or unregistered trademarks of Hyland Sof All images, icons, fonts, and videos contained in this folder are copyrighted by Hyland Software, all rights reserved. -## About Nuxeo +## About Nuxeo Nuxeo dramatically improves how content-based applications are built, managed and deployed, making customers more agile, innovative and successful. Nuxeo provides a next generation, enterprise ready platform for building traditional and cutting-edge content oriented applications. Combining a powerful application development environment with SaaS-based tools and a modular architecture, the Nuxeo Platform and Products provide clear business value to some of the most recognizable brands including Verizon, Electronic Arts, Sharp, FICO, the U.S. Navy, and Boeing. Nuxeo is headquartered in New York and Paris. More information is available at www.nuxeo.com. diff --git a/index.html b/index.html index 4d6fd00122..ca2d9754c4 100644 --- a/index.html +++ b/index.html @@ -85,7 +85,7 @@ - + - + - + - + - + - +