-
Notifications
You must be signed in to change notification settings - Fork 27.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'canary' into hotfix/css-page-order
- Loading branch information
Showing
663 changed files
with
247,971 additions
and
5,742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,17 @@ jobs: | |
runs-on: ubuntu-latest | ||
env: | ||
NEXT_TELEMETRY_DISABLED: 1 | ||
outputs: | ||
docsChange: ${{ steps.docs-change.outputs.DOCS_CHANGE }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
- run: yarn install --frozen-lockfile --check-files | ||
- run: node run-tests.js --timings --write-timings -g 1/1 | ||
- name: Check docs only change | ||
run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'docs-only') | ||
id: docs-change | ||
- run: echo ${{steps.docs-change.outputs.DOCS_CHANGE}} | ||
- uses: actions/cache@v2 | ||
id: cache-build | ||
with: | ||
|
@@ -41,11 +47,13 @@ jobs: | |
NEXT_TELEMETRY_DISABLED: 1 | ||
steps: | ||
- uses: actions/cache@v2 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
id: restore-build | ||
with: | ||
path: ./* | ||
key: ${{ github.sha }} | ||
- run: ./check-pre-compiled.sh | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
testUnit: | ||
name: Test Unit | ||
|
@@ -57,12 +65,14 @@ jobs: | |
HEADLESS: true | ||
steps: | ||
- uses: actions/cache@v2 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
id: restore-build | ||
with: | ||
path: ./* | ||
key: ${{ github.sha }} | ||
|
||
- run: node run-tests.js --timings --type unit -g 1/1 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
testIntegration: | ||
name: Test Integration | ||
|
@@ -77,16 +87,20 @@ jobs: | |
matrix: | ||
group: [1, 2, 3, 4, 5, 6] | ||
steps: | ||
- run: echo ${{needs.build.outputs.docsChange}} | ||
- uses: actions/cache@v2 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
id: restore-build | ||
with: | ||
path: ./* | ||
key: ${{ github.sha }} | ||
|
||
# TODO: remove after we fix watchpack watching too much | ||
- run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
- run: xvfb-run node run-tests.js --timings -g ${{ matrix.group }}/6 -c 3 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
testElectron: | ||
name: Test Electron | ||
|
@@ -99,17 +113,21 @@ jobs: | |
TEST_ELECTRON: 1 | ||
steps: | ||
- uses: actions/cache@v2 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
id: restore-build | ||
with: | ||
path: ./* | ||
key: ${{ github.sha }} | ||
|
||
# TODO: remove after we fix watchpack watching too much | ||
- run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
- run: yarn add -W --dev [email protected] [email protected] | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
- run: xvfb-run node run-tests.js test/integration/with-electron/test/index.test.js | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
testYarnPnP: | ||
runs-on: ubuntu-latest | ||
|
@@ -119,9 +137,14 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'docs-only') | ||
id: docs-change | ||
|
||
- run: yarn install --frozen-lockfile --check-files | ||
if: ${{steps.docs-change.outputs.DOCS_CHANGE != 'docs-only'}} | ||
|
||
- run: bash ./test-pnp.sh | ||
if: ${{steps.docs-change.outputs.DOCS_CHANGE != 'docs-only'}} | ||
|
||
testsPass: | ||
name: thank you, next | ||
|
@@ -131,22 +154,60 @@ jobs: | |
- run: exit 0 | ||
|
||
testFutureDependencies: | ||
name: React 17 + webpack 5 (Basic, Production, Acceptance) | ||
name: Webpack 5 (Basic, Production, Acceptance) | ||
runs-on: ubuntu-latest | ||
env: | ||
NEXT_TELEMETRY_DISABLED: 1 | ||
NEXT_TEST_JOB: 1 | ||
HEADLESS: true | ||
NEXT_PRIVATE_TEST_WEBPACK5_MODE: 1 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'docs-only') | ||
id: docs-change | ||
|
||
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
- run: cat package.json | jq '.resolutions.webpack = "^5.11.1"' > package.json.tmp && mv package.json.tmp package.json | ||
- run: cat package.json | jq '.resolutions.react = "^17.0.1"' > package.json.tmp && mv package.json.tmp package.json | ||
- run: cat package.json | jq '.resolutions."react-dom" = "^17.0.1"' > package.json.tmp && mv package.json.tmp package.json | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- run: yarn install --check-files | ||
- run: yarn list webpack react react-dom | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- run: xvfb-run node run-tests.js test/integration/{link-ref,production,basic,async-modules,font-optimization,ssr-ctx}/test/index.test.js test/acceptance/*.test.js | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
testLegacyReact: | ||
name: React 16 + Webpack 4 (Basic, Production, Acceptance) | ||
runs-on: ubuntu-latest | ||
env: | ||
NEXT_TELEMETRY_DISABLED: 1 | ||
NEXT_TEST_JOB: 1 | ||
HEADLESS: true | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'docs-only') | ||
id: docs-change | ||
|
||
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- run: cat package.json | jq '.resolutions.react = "^16.14.0"' > package.json.tmp && mv package.json.tmp package.json | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- run: cat package.json | jq '.resolutions."react-dom" = "^16.14.0"' > package.json.tmp && mv package.json.tmp package.json | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- run: yarn install --check-files | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- run: yarn list react react-dom | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- run: xvfb-run node run-tests.js test/integration/{link-ref,production,basic,async-modules,font-optimization,ssr-ctx,worker-loader}/test/index.test.js test/acceptance/*.test.js | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
testFirefox: | ||
name: Test Firefox (production) | ||
|
@@ -158,11 +219,13 @@ jobs: | |
NEXT_TELEMETRY_DISABLED: 1 | ||
steps: | ||
- uses: actions/cache@v2 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
id: restore-build | ||
with: | ||
path: ./* | ||
key: ${{ github.sha }} | ||
- run: node run-tests.js test/integration/production/test/index.test.js | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
testSafari: | ||
name: Test Safari (production) | ||
|
@@ -177,11 +240,13 @@ jobs: | |
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | ||
steps: | ||
- uses: actions/cache@v2 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
id: restore-build | ||
with: | ||
path: ./* | ||
key: ${{ github.sha }} | ||
- run: '[[ -z "$BROWSERSTACK_ACCESS_KEY" ]] && echo "Skipping for PR" || node run-tests.js test/integration/production/test/index.test.js' | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
testSafariOld: | ||
name: Test Safari 10.1 (nav) | ||
|
@@ -197,11 +262,13 @@ jobs: | |
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | ||
steps: | ||
- uses: actions/cache@v2 | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
id: restore-build | ||
with: | ||
path: ./* | ||
key: ${{ github.sha }} | ||
- run: '[[ -z "$BROWSERSTACK_ACCESS_KEY" ]] && echo "Skipping for PR" || node run-tests.js test/integration/production-nav/test/index.test.js' | ||
if: ${{needs.build.outputs.docsChange != 'docs-only'}} | ||
|
||
publishRelease: | ||
name: Potentially publish release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.