chore: move msedge-dev workflow to secondary tests (#7681)
This commit is contained in:
parent
2f07846c9a
commit
09764a4423
72
.github/workflows/tests_primary.yml
vendored
72
.github/workflows/tests_primary.yml
vendored
|
|
@ -66,75 +66,3 @@ jobs:
|
||||||
- run: node lib/cli/cli install-deps
|
- run: node lib/cli/cli install-deps
|
||||||
- run: node lib/cli/cli install
|
- run: node lib/cli/cli install
|
||||||
- run: npm run ttest
|
- 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
|
|
||||||
|
|
||||||
|
|
|
||||||
71
.github/workflows/tests_secondary.yml
vendored
71
.github/workflows/tests_secondary.yml
vendored
|
|
@ -452,6 +452,77 @@ jobs:
|
||||||
name: edge-beta-linux-test-results
|
name: edge-beta-linux-test-results
|
||||||
path: 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:
|
chrome_beta_linux:
|
||||||
name: "Chrome Beta (Linux)"
|
name: "Chrome Beta (Linux)"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue