93 SCCACHE_REGION: us-west-1
94 CACHE_DOMAIN: ci-caches.rust-lang.org
95▶ continue-on-error: ${{ matrix.continue_on_error || false }}
96 strategy:
97 # If the user starts multiple jobs in a try build, let them all finish.
· · ·
140 # Actions build on its own, so a hint in the log message is needed to
141 # point it in the right direction.
142▶ - name: configure the PR in which the error message will be posted
143 run: echo "[CI_PR_NUMBER=$num]"
144 env:
· · ·
272 # adding the condition is helpful as this way CI will not silently skip
273 # deploying artifacts from a dist builder if the variables are misconfigured,
274▶ # erroring about invalid credentials instead.
275 if: github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1'
276
· · ·
278 # This step is not critical, and if some I/O problem happens, we don't want
279 # to cancel the build.
280▶ continue-on-error: true
281 run: |
282 if [ -f build/metrics.json ]; then
· · ·
300 # This step is not critical, and if some I/O problem happens, we don't want
301 # to cancel the build.
302▶ continue-on-error: true
303 if: needs.calculate_matrix.outputs.run_type != 'pr'
304 env: