Skip to content

Commit

Permalink
Merge pull request #329 from jprendes/fix-release-e2e-tests
Browse files Browse the repository at this point in the history
Use makefile and timeout in release workflow
  • Loading branch information
Mossaka committed Sep 21, 2023
2 parents df35a38 + 37fbcf7 commit ab2158f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@ jobs:
with:
cache: false
- name: Build
run: cargo build --verbose --package ${{ needs.generate.outputs.crate }}
timeout-minutes: 5
run: make build-$(cut -d- -f3 <<<"${{ needs.generate.outputs.crate }}")
- name: Test
run: cargo test --verbose --package ${{ needs.generate.outputs.crate }}
timeout-minutes: 5
run: make test-$(cut -d- -f3 <<<"${{ needs.generate.outputs.crate }}")

release:
permissions:
Expand Down

0 comments on commit ab2158f

Please sign in to comment.