Skip to content
Draft
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
- name: Build forkpress
run: cargo build --release --target x86_64-unknown-linux-musl -p forkpress-cli --bin forkpress

- name: Production CLI e2e
run: cargo test -p forkpress-e2e-tests --test production_cli -- --ignored --nocapture
env:
FORKPRESS_E2E_BIN: target/x86_64-unknown-linux-musl/release/forkpress

- name: COW strategy e2e
run: tests/cow/e2e.sh target/x86_64-unknown-linux-musl/release/forkpress

Expand Down Expand Up @@ -112,6 +117,11 @@ jobs:
- name: Build forkpress
run: cargo build --release --target ${{ matrix.target }} -p forkpress-cli --bin forkpress

- name: Production CLI e2e
run: cargo test -p forkpress-e2e-tests --test production_cli -- --ignored --nocapture
env:
FORKPRESS_E2E_BIN: target/${{ matrix.target }}/release/forkpress

- name: COW strategy e2e through APFS sparsebundle
run: tests/cow/e2e.sh target/${{ matrix.target }}/release/forkpress
env:
Expand Down
Loading
Loading