Skip to content

Commit

Permalink
ci: run e2e tests with debug, fast, and safe builds (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonIsaac authored Nov 28, 2024
1 parent dc48326 commit 819bbfb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ jobs:
e2e:
name: Test E2E
runs-on: ubuntu-latest
strategy:
matrix:
optimize: ["Debug", "ReleaseSafe", "ReleaseFast"]
steps:
- uses: actions/checkout@v4
# Install tooling
Expand All @@ -73,7 +76,7 @@ jobs:
version: ${{ env.ZIG_VERSION }}
- run: zig build --fetch
- run: just submodules
- run: just e2e
- run: just e2e -Doptimize=${{ matrix.optimize }}
- name: Check for changes
run: git diff --exit-code

Expand Down

0 comments on commit 819bbfb

Please sign in to comment.