diff options
| author | Marco Ieni <11428655+MarcoIeni@users.noreply.github.com> | 2024-10-22 11:03:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-22 11:03:36 +0000 |
| commit | 340d2f7847829c680965691c9d99a24e038f1ef7 (patch) | |
| tree | 8a1d9840bac729cb2506fbbdb8cd8c6943fbcbeb | |
| parent | f8448f9e0cef8cb48741d7584b2f39eea150d6ed (diff) | |
| parent | 615822d0da576d2c7b263fa17a2af8291a26c5e1 (diff) | |
| download | rust-340d2f7847829c680965691c9d99a24e038f1ef7.tar.gz rust-340d2f7847829c680965691c9d99a24e038f1ef7.zip | |
Merge pull request #3981 from Kobzol/ci-merge-queue
Switch CI to merge queues
| -rw-r--r-- | src/tools/miri/.github/workflows/ci.yml | 39 |
1 files changed, 16 insertions, 23 deletions
diff --git a/src/tools/miri/.github/workflows/ci.yml b/src/tools/miri/.github/workflows/ci.yml index 8b0916f5111..400a012deed 100644 --- a/src/tools/miri/.github/workflows/ci.yml +++ b/src/tools/miri/.github/workflows/ci.yml @@ -1,11 +1,7 @@ name: CI on: - push: - # Run in PRs and for bors, but not on master. - branches: - - 'auto' - - 'try' + merge_group: pull_request: branches: - 'master' @@ -62,27 +58,24 @@ jobs: - name: rustdoc run: RUSTDOCFLAGS="-Dwarnings" ./miri doc --document-private-items - # These jobs doesn't actually test anything, but they're only used to tell - # bors the build completed, as there is no practical way to detect when a - # workflow is successful listening to webhooks only. - # - # ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB! - end-success: - name: bors build finished - runs-on: ubuntu-latest + conclusion: needs: [build, style] - if: github.event.pusher.name == 'bors' && success() - steps: - - name: mark the job as a success - run: exit 0 - end-failure: - name: bors build finished + # We need to ensure this job does *not* get skipped if its dependencies fail, + # because a skipped job is considered a success by GitHub. So we have to + # overwrite `if:`. We use `!cancelled()` to ensure the job does still not get run + # when the workflow is canceled manually. + # + # ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB! + if: ${{ !cancelled() }} runs-on: ubuntu-latest - needs: [build, style] - if: github.event.pusher.name == 'bors' && (failure() || cancelled()) steps: - - name: mark the job as a failure - run: exit 1 + # Manually check the status of all dependencies. `if: failure()` does not work. + - name: Conclusion + run: | + # Print the dependent jobs to see them in the CI log + jq -C <<< '${{ toJson(needs) }}' + # Check if all jobs that we depend on (in the needs array) were successful. + jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}' cron-fail-notify: name: cronjob failure notification |
