From 09764a4423837e2e84923290baafd124fde3cd7a Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Fri, 16 Jul 2021 11:40:13 -0800 Subject: [PATCH] chore: move msedge-dev workflow to secondary tests (#7681) --- .github/workflows/tests_primary.yml | 72 --------------------------- .github/workflows/tests_secondary.yml | 71 ++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 72 deletions(-) diff --git a/.github/workflows/tests_primary.yml b/.github/workflows/tests_primary.yml index 458b61967f..e193105d42 100644 --- a/.github/workflows/tests_primary.yml +++ b/.github/workflows/tests_primary.yml @@ -66,75 +66,3 @@ jobs: - run: node lib/cli/cli install-deps - run: node lib/cli/cli install - run: npm run ttest - - edge_dev_mac: - name: "Edge Dev (Mac)" - runs-on: macos-10.15 - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: 12 - - run: npm ci - env: - PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 - - run: npm run build - - run: node lib/cli/cli install msedge-dev - - run: npm run ctest - env: - PWTEST_CHANNEL: msedge-dev - - run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json - if: always() - - uses: actions/upload-artifact@v1 - if: ${{ always() }} - with: - name: msedge-dev-mac-test-results - path: test-results - - edge_dev_win: - name: "Edge Dev (Win)" - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: 12 - - run: npm ci - env: - PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 - - run: npm run build - - run: node lib/cli/cli install msedge-dev - - run: npm run ctest - shell: bash - env: - PWTEST_CHANNEL: msedge-dev - - uses: actions/upload-artifact@v1 - if: ${{ always() }} - with: - name: edge-dev-win-test-results - path: test-results - - edge_dev_linux: - name: "Edge Dev (Linux)" - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: 12 - - run: npm ci - env: - PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 - - run: npm run build - - run: node lib/cli/cli install msedge-dev - - run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run ctest - env: - PWTEST_CHANNEL: msedge-dev - - run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json - if: always() - - uses: actions/upload-artifact@v1 - if: ${{ always() }} - with: - name: edge-dev-linux-test-results - path: test-results - diff --git a/.github/workflows/tests_secondary.yml b/.github/workflows/tests_secondary.yml index a8b15cc2db..c756a3fd39 100644 --- a/.github/workflows/tests_secondary.yml +++ b/.github/workflows/tests_secondary.yml @@ -452,6 +452,77 @@ jobs: name: edge-beta-linux-test-results path: test-results + edge_dev_mac: + name: "Edge Dev (Mac)" + runs-on: macos-10.15 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 12 + - run: npm ci + env: + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + - run: npm run build + - run: node lib/cli/cli install msedge-dev + - run: npm run ctest + env: + PWTEST_CHANNEL: msedge-dev + - run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json + if: always() + - uses: actions/upload-artifact@v1 + if: ${{ always() }} + with: + name: msedge-dev-mac-test-results + path: test-results + + edge_dev_win: + name: "Edge Dev (Win)" + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 12 + - run: npm ci + env: + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + - run: npm run build + - run: node lib/cli/cli install msedge-dev + - run: npm run ctest + shell: bash + env: + PWTEST_CHANNEL: msedge-dev + - uses: actions/upload-artifact@v1 + if: ${{ always() }} + with: + name: edge-dev-win-test-results + path: test-results + + edge_dev_linux: + name: "Edge Dev (Linux)" + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 12 + - run: npm ci + env: + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + - run: npm run build + - run: node lib/cli/cli install msedge-dev + - run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run ctest + env: + PWTEST_CHANNEL: msedge-dev + - run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json + if: always() + - uses: actions/upload-artifact@v1 + if: ${{ always() }} + with: + name: edge-dev-linux-test-results + path: test-results + chrome_beta_linux: name: "Chrome Beta (Linux)" runs-on: ubuntu-20.04