Skip to content

Commit 282e086

Browse files
authored
chore: use curl in build.rs (#42)
1 parent 96bd2eb commit 282e086

File tree

5 files changed

+22
-444
lines changed

5 files changed

+22
-444
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,18 @@ jobs:
5252
- run: rustup target add x86_64-unknown-linux-musl
5353
if: ${{ matrix.os == 'ubuntu-latest' }}
5454

55+
- run: pip install cargo-zigbuild
56+
if: ${{ matrix.os == 'ubuntu-latest' }}
57+
5558
- run: cargo check --all-targets --all-features
5659
env:
5760
RUSTFLAGS: '-D warnings --cfg tokio_unstable' # also update .cargo/config.toml
5861

5962
- run: cargo test
63+
if: ${{ matrix.os != 'ubuntu-latest' }}
64+
65+
- run: cargo-zigbuild test --target x86_64-unknown-linux-gnu.2.17
66+
if: ${{ matrix.os == 'ubuntu-latest' }}
6067

6168
lint:
6269
name: Lint

0 commit comments

Comments
 (0)