Skip to content

Commit

Permalink
ci: only run one verifier at a time
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Nov 13, 2024
1 parent 4e43d7e commit 43288df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
- name: Test (ruby standalone - docker)
run: GIT_BRANCH=${GITHUB_REF:11} make test
- name: Test (native standalone - docker)
run: GIT_BRANCH=${GITHUB_REF:11} make test_native

# Runs on branches as well, so we know the status of our PRs
can-i-deploy:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ fake_ci_webhook:
## =====================

test: .env
docker compose up --exit-code-from pact_verifier
docker compose up pact_verifier --exit-code-from pact_verifier
docker compose logs pact_verifier
test_native: .env
docker compose up --exit-code-from pact_verifier_native
docker compose up pact_verifier_native --exit-code-from pact_verifier_native
docker compose logs pact_verifier_native

## =====================
Expand Down

0 comments on commit 43288df

Please sign in to comment.