Skip to content

Commit

Permalink
ci/gha: add test-all and validate-all jobs
Browse files Browse the repository at this point in the history
The sole reason is to simplify branch protection rules,
requiring just these to be passed.

Signed-off-by: Kir Kolyshkin <[email protected]>
  • Loading branch information
kolyshkin committed Aug 14, 2024
1 parent 6602681 commit 2242115
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,6 @@ jobs:
env:
EXTRA_BUILDTAGS: ${{ matrix.dmz }}
run: sudo -E PATH="$PATH" -- make GOARCH=386 localunittest

all-test:
needs: test cross-i386
16 changes: 16 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,3 +234,19 @@ jobs:
cd tests/integration
./bootstrap-get-images.sh > get-images.sh
git diff --exit-code
validate-all:
needs:
- cfmt
- codespell
- commit
- compile-buildtags
- deps
- get-images
- go-fix
- keyring
- lint
- release
- shellcheck
- shfmt
- space-at-eol

0 comments on commit 2242115

Please sign in to comment.