diff --git a/.github/workflows/e2e-functional.yml b/.github/workflows/e2e-functional.yml index d31f41c2..ab166392 100644 --- a/.github/workflows/e2e-functional.yml +++ b/.github/workflows/e2e-functional.yml @@ -47,6 +47,7 @@ env: AWS_REGION: "us-east-1" WEBHOOK_URL: ${{ secrets.MM_DESKTOP_E2E_WEBHOOK_URL }} ZEPHYR_API_KEY: ${{ secrets.MM_DESKTOP_E2E_ZEPHYR_API_KEY }} + BUILD_ID: ${{ github.run_id }} jobs: e2e-linux: @@ -92,6 +93,7 @@ jobs: - name: Set Environment Variables run: | + echo "*********", $BUILD_ID if [ "${{ github.event_name }}" == "pull_request" ]; then echo "BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV echo "BUILD_SUFFIX=desktop-pr" >> $GITHUB_ENV @@ -183,6 +185,7 @@ jobs: - name: Set Environment Variables run: | + echo "*********", $BUILD_ID if [ "${{ github.event_name }}" == "pull_request" ]; then echo "BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV echo "BUILD_SUFFIX=desktop-pr" >> $GITHUB_ENV @@ -276,6 +279,7 @@ jobs: - name: Set Environment Variables shell: bash run: | + echo "*********", $BUILD_ID if [ "${{ github.event_name }}" == "pull_request" ]; then echo "BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV echo "BUILD_SUFFIX=desktop-pr" >> $GITHUB_ENV diff --git a/.github/workflows/nightly-builds.yaml b/.github/workflows/nightly-builds.yaml index 4960621f..61759c8c 100644 --- a/.github/workflows/nightly-builds.yaml +++ b/.github/workflows/nightly-builds.yaml @@ -27,21 +27,21 @@ jobs: git push --tags --force echo "tag=$(jq -r .version package.json)" >> $GITHUB_OUTPUT - nightly-main: - needs: - - tag-nightly-build - uses: ./.github/workflows/nightly-main.yml - secrets: inherit - with: - tag: ${{ needs.tag-nightly-build.outputs.tag }} + # nightly-main: + # needs: + # - tag-nightly-build + # uses: ./.github/workflows/nightly-main.yml + # secrets: inherit + # with: + # tag: ${{ needs.tag-nightly-build.outputs.tag }} - nightly-rainforest: - needs: - - tag-nightly-build - uses: ./.github/workflows/nightly-rainforest.yml - secrets: inherit - with: - tag: ${{ needs.tag-nightly-build.outputs.tag }} + # nightly-rainforest: + # needs: + # - tag-nightly-build + # uses: ./.github/workflows/nightly-rainforest.yml + # secrets: inherit + # with: + # tag: ${{ needs.tag-nightly-build.outputs.tag }} nightly-e2e: needs: diff --git a/webpack.config.test.js b/webpack.config.test.js index b014204f..1511cf03 100644 --- a/webpack.config.test.js +++ b/webpack.config.test.js @@ -16,7 +16,7 @@ const WEBSERVER_PORT = process.env.WEBSERVER_PORT ?? 9001; module.exports = merge(base, { entry: { - e2e: glob.sync('./e2e/specs/**/*.test.js'), + e2e: glob.sync('./e2e/specs/**/copy_link.test.js'), }, output: { path: path.resolve(__dirname, 'dist/tests'),