Skip to content

Let gix-testtools use gix-* workspace crates #1992

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 5, 2025
Merged
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: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ jobs:
run: |
set +x
for crate in gix-sec; do
(cd -- "$crate" && cargo build --target "$TARGET")
cargo build -p "$crate" --target "$TARGET"
done
- name: crates without feature toggles
run: |
Expand Down Expand Up @@ -401,22 +401,22 @@ jobs:
)
set +x
for crate in "${crates[@]}"; do
(cd -- "$crate" && cargo build --target "$TARGET")
cargo build -p "$crate" --target "$TARGET"
done
- name: features of gix-features
run: |
set +x
for feature in progress parallel io-pipe crc32 zlib cache-efficiency-debug; do
(cd gix-features && cargo build --features "$feature" --target "$TARGET")
cargo build -p gix-features --features "$feature" --target "$TARGET"
done
- name: crates with 'wasm' feature
run: |
set +x
for crate in gix-pack; do
(cd -- "$crate" && cargo build --features wasm --target "$TARGET")
cargo build -p "$crate" --features wasm --target "$TARGET"
done
- name: gix-pack with all features (including wasm)
run: cd gix-pack && cargo build --all-features --target "$TARGET"
run: cargo build -p gix-pack --all-features --target "$TARGET"

check-packetline:
strategy:
Expand Down
Loading
Loading