Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -359,3 +359,21 @@
docker buildx build --build-context builder=release/binaries \
--load -t ocomment:ci-prebuilt .
docker run --rm ocomment:ci-prebuilt --version

# The one status check branch protection requires,

Check failure on line 363 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / dogfood

removable line comment
# named the same in every P4suta repository.

Check failure on line 364 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / dogfood

removable line comment
# It passes only when every job it needs succeeded or was skipped.

Check failure on line 365 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / dogfood

removable line comment
required:
name: required
if: always()
needs: [rust, msrv, reference, dogfood, host-smoke, action-smoke, vscode, docker]
runs-on: ubuntu-latest
timeout-minutes: 5
permissions: {}
steps:
- name: Fail unless every needed job succeeded or was skipped
env:
RESULTS: ${{ toJSON(needs.*.result) }}
run: |
echo "${RESULTS}"
jq -e 'all(.[]; IN("success", "skipped"))' <<< "${RESULTS}"
Loading