|
| 1 | +name: PR Checks |
| 2 | +on: |
| 3 | + pull_request: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - master |
| 7 | + tags: '*' |
| 8 | +concurrency: |
| 9 | + # Skip intermediate builds: all builds except for builds on the `master` branch |
| 10 | + # Cancel intermediate builds: only pull request builds |
| 11 | + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }} |
| 12 | + cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} |
| 13 | +permissions: |
| 14 | + contents: read |
| 15 | +jobs: |
| 16 | + finalize-pr-checks: |
| 17 | + if: always() # this line is important to keep the `finalize` job from being marked as skipped; do not change or delete this line |
| 18 | + runs-on: ubuntu-latest |
| 19 | + timeout-minutes: 10 |
| 20 | + needs: |
| 21 | + - checked-in-files |
| 22 | + - build |
| 23 | + - npm-run-test |
| 24 | + - make-targets |
| 25 | + - stalecheck-npm-install |
| 26 | + steps: |
| 27 | + - run: | |
| 28 | + echo checked-in-files: ${{ needs.checked-in-files.result }} |
| 29 | + echo build: ${{ needs.build.result }} |
| 30 | + echo npm-run-test: ${{ needs.npm-run-test.result }} |
| 31 | + echo make-targets: ${{ needs.make-targets.result }} |
| 32 | + echo stalecheck-npm-install: ${{ needs.stalecheck-npm-install.result }} |
| 33 | + - run: exit 1 |
| 34 | + if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') }} |
| 35 | + checked-in-files: |
| 36 | + timeout-minutes: 30 |
| 37 | + runs-on: ubuntu-latest |
| 38 | + strategy: |
| 39 | + fail-fast: false |
| 40 | + steps: |
| 41 | + ### Check out the repo: |
| 42 | + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 |
| 43 | + with: |
| 44 | + persist-credentials: false |
| 45 | + ### Cleanall: |
| 46 | + - run: make cleanall |
| 47 | + ### Install NodeJS |
| 48 | + # Unix (non-Windows): |
| 49 | + - uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 |
| 50 | + if: runner.os != 'Windows' |
| 51 | + - run: make unix-asdf-install |
| 52 | + if: runner.os != 'Windows' |
| 53 | + # Windows: |
| 54 | + # Windows does not support asdf, so we have to use `actions/setup-node` |
| 55 | + # to install asdf: |
| 56 | + - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b |
| 57 | + if: runner.os == 'Windows' |
| 58 | + with: |
| 59 | + node-version-file: '.tool-versions' |
| 60 | + ### Install the NodeJS packages that we depend on: |
| 61 | + - run: make install-packages |
| 62 | + ### Print some debugging info: |
| 63 | + - name: Print the NodeJS version (for debugging) |
| 64 | + run: | |
| 65 | + which -a node |
| 66 | + node --version |
| 67 | + which -a npm |
| 68 | + npm --version |
| 69 | + ### Build: |
| 70 | + - run: make pack |
| 71 | + ### Clean (not cleanall!): |
| 72 | + - run: make clean |
| 73 | + ### Make sure there are no uncommited changes |
| 74 | + - uses: julia-actions/setup-julia@780022b48dfc0c2c6b94cfee6a9284850107d037 |
| 75 | + with: |
| 76 | + version: '1' |
| 77 | + - run: git --no-pager status |
| 78 | + - run: git --no-pager diff |
| 79 | + - run: julia ./ci/check_uncommitted_changes.jl |
| 80 | + build: |
| 81 | + timeout-minutes: 30 |
| 82 | + runs-on: ubuntu-latest |
| 83 | + steps: |
| 84 | + ### Check out the repo: |
| 85 | + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 |
| 86 | + with: |
| 87 | + persist-credentials: false |
| 88 | + ### Cleanall: |
| 89 | + - run: make cleanall |
| 90 | + ### Install NodeJS |
| 91 | + # Unix (non-Windows): |
| 92 | + - uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 |
| 93 | + if: runner.os != 'Windows' |
| 94 | + - run: make unix-asdf-install |
| 95 | + if: runner.os != 'Windows' |
| 96 | + # Windows: |
| 97 | + # Windows does not support asdf, so we have to use `actions/setup-node` |
| 98 | + # to install asdf: |
| 99 | + - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b |
| 100 | + if: runner.os == 'Windows' |
| 101 | + with: |
| 102 | + node-version-file: '.tool-versions' |
| 103 | + ### Install the NodeJS packages that we depend on: |
| 104 | + - run: make install-packages |
| 105 | + ### Print some debugging info: |
| 106 | + - name: Print the NodeJS version (for debugging) |
| 107 | + run: | |
| 108 | + which -a node |
| 109 | + node --version |
| 110 | + which -a npm |
| 111 | + npm --version |
| 112 | + ### Build: |
| 113 | + - run: make build |
| 114 | + - run: make pack |
| 115 | + ### Make sure some other `make` targets don't bitrot: |
| 116 | + - name: Run some other `make` targets to ensure that they don't bitrot |
| 117 | + run: | |
| 118 | + make clean |
| 119 | + make cleanall |
| 120 | + - name: Run all of the "cleaning" `make` targets to ensure that they don't bitrot |
| 121 | + run: | |
| 122 | + make clean |
| 123 | + make cleanall |
| 124 | + npm-run-test: |
| 125 | + timeout-minutes: 30 |
| 126 | + runs-on: ubuntu-latest |
| 127 | + steps: |
| 128 | + ### Check out the repo: |
| 129 | + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 |
| 130 | + with: |
| 131 | + persist-credentials: false |
| 132 | + ### Cleanall: |
| 133 | + - run: make cleanall |
| 134 | + ### Install NodeJS |
| 135 | + # Unix (non-Windows): |
| 136 | + - uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 |
| 137 | + if: runner.os != 'Windows' |
| 138 | + - run: make unix-asdf-install |
| 139 | + if: runner.os != 'Windows' |
| 140 | + # Windows: |
| 141 | + # Windows does not support asdf, so we have to use `actions/setup-node` |
| 142 | + # to install asdf: |
| 143 | + - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b |
| 144 | + if: runner.os == 'Windows' |
| 145 | + with: |
| 146 | + node-version-file: '.tool-versions' |
| 147 | + ### Install the NodeJS packages that we depend on: |
| 148 | + - run: make install-packages |
| 149 | + ### Print some debugging info: |
| 150 | + - name: Print the NodeJS version (for debugging) |
| 151 | + run: | |
| 152 | + which -a node |
| 153 | + node --version |
| 154 | + which -a npm |
| 155 | + npm --version |
| 156 | + ### Build: |
| 157 | + - run: make build |
| 158 | + - run: make test |
| 159 | + make-targets: # This is a job to make sure that none of the `make` targets bitrot |
| 160 | + timeout-minutes: 30 |
| 161 | + runs-on: ubuntu-latest |
| 162 | + steps: |
| 163 | + ### Check out the repo: |
| 164 | + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 |
| 165 | + with: |
| 166 | + persist-credentials: false |
| 167 | + ### Cleanall: |
| 168 | + - run: make cleanall |
| 169 | + ### Install NodeJS |
| 170 | + # Unix (non-Windows): |
| 171 | + - uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 |
| 172 | + if: runner.os != 'Windows' |
| 173 | + - run: make unix-asdf-install |
| 174 | + if: runner.os != 'Windows' |
| 175 | + ### Install the NodeJS packages that we depend on: |
| 176 | + - run: make install-packages |
| 177 | + ### Make sure some other `make` targets don't bitrot: |
| 178 | + - name: Run some other `make` targets to ensure that they don't bitrot |
| 179 | + run: | |
| 180 | + make unix-asdf-install |
| 181 | + make install-packages |
| 182 | + make build |
| 183 | + make pack |
| 184 | + make everything-from-scratch |
| 185 | + - name: Run all of the "cleaning" `make` targets to ensure that they don't bitrot |
| 186 | + run: | |
| 187 | + make clean |
| 188 | + make cleanall |
| 189 | + stalecheck-npm-install: |
| 190 | + # In this job, we are basically trying to check if `package-lock.json` is in |
| 191 | + # sync with `package-lock.json`. |
| 192 | + # |
| 193 | + # So, for example, if someone manually edits the `package.json` file, we want |
| 194 | + # to make sure that the `package-lock.json` file is not out of sync with the |
| 195 | + # `package.json` file. |
| 196 | + timeout-minutes: 30 |
| 197 | + runs-on: ubuntu-latest |
| 198 | + strategy: |
| 199 | + fail-fast: false |
| 200 | + steps: |
| 201 | + ### Check out the repo: |
| 202 | + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 |
| 203 | + with: |
| 204 | + persist-credentials: false |
| 205 | + ### Install NodeJS |
| 206 | + # Unix (non-Windows): |
| 207 | + - uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 |
| 208 | + if: runner.os != 'Windows' |
| 209 | + - run: make unix-asdf-install |
| 210 | + if: runner.os != 'Windows' |
| 211 | + ### Run the master commands for this job: |
| 212 | + - run: make clean |
| 213 | + - run: npm ci |
| 214 | + # - run: npm install --package-lock-only |
| 215 | + - run: npm install |
| 216 | + ### Make sure there are no uncommited changes |
| 217 | + - uses: julia-actions/setup-julia@780022b48dfc0c2c6b94cfee6a9284850107d037 |
| 218 | + with: |
| 219 | + version: '1' |
| 220 | + - run: git --no-pager status |
| 221 | + - run: git --no-pager diff |
| 222 | + - run: julia ./ci/check_uncommitted_changes.jl |
0 commit comments