forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip GitHub actions tests for irrelevant changes (vercel#20867)
* Skip GitHub actions tests for irrelevant changes * add docs lint step * Add lint-no-typescript * Update docs lint * Skip at the job level * Update steps * remove un-needed dep * Update compare branch * log remotes * output to stderr * fetch origin * Update fetch * update diffing * Update command handling * test output * Update check * Log output * Update outputs * Add id for build job * Update output * Update precompiled * remove testing check
- Loading branch information
Showing
5 changed files
with
106 additions
and
0 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
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 | ||
|
@@ -140,13 +163,30 @@ 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: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- run: cat package.json | jq '.resolutions.webpack = "^5.11.1"' > 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 = "^17.0.1"' > 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" = "^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 | ||
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs-only' }} | ||
|
||
- 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' }} | ||
|
||
testFirefox: | ||
name: Test Firefox (production) | ||
|
@@ -158,11 +198,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 +219,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 +241,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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
const { promisify } = require('util') | ||
const { exec: execOrig, spawn } = require('child_process') | ||
|
||
const exec = promisify(execOrig) | ||
|
||
const DOCS_FOLDERS = ['bench', 'docs', 'errors', 'examples'] | ||
|
||
async function main() { | ||
await exec('git fetch origin canary') | ||
const { stdout: changedFilesOutput } = await exec( | ||
'git diff $(git merge-base --fork-point canary) --name-only' | ||
) | ||
const changedFiles = changedFilesOutput | ||
.split('\n') | ||
.map((file) => file && file.trim()) | ||
.filter(Boolean) | ||
|
||
let hasNonDocsChange = changedFiles.some((file) => { | ||
return !DOCS_FOLDERS.some((folder) => file.startsWith(folder + '/')) | ||
}) | ||
|
||
const args = process.argv.slice(process.argv.indexOf(__filename) + 1) | ||
|
||
if (args.length === 0) { | ||
console.log(process.argv, args) | ||
console.log('no script provided, exiting...') | ||
} | ||
|
||
if (hasNonDocsChange) { | ||
const cmd = spawn(args[0], args.slice(1)) | ||
cmd.stdout.pipe(process.stdout) | ||
cmd.stderr.pipe(process.stderr) | ||
|
||
await new Promise((resolve, reject) => { | ||
cmd.on('exit', (code) => { | ||
if (code !== 0) { | ||
return reject(new Error('command failed with code: ' + code)) | ||
} | ||
resolve() | ||
}) | ||
cmd.on('error', (err) => reject(err)) | ||
}) | ||
} else { | ||
console.log('Only docs changes exiting...') | ||
} | ||
} | ||
|
||
main().catch((err) => { | ||
console.error('Failed to detect doc changes', err) | ||
process.exit(1) | ||
}) |