Skip to content

Commit

Permalink
Merge branch 'master' into add-resolverver
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnatsel committed Jan 22, 2025
2 parents 4ea1b6f + 77bc08b commit 9702f03
Show file tree
Hide file tree
Showing 5 changed files with 388 additions and 19 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,12 @@ jobs:
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('Cargo.lock') }}
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
target: "wasm32-unknown-unknown"
targets: "wasm32-unknown-unknown,i686-unknown-linux-gnu,x86_64-unknown-linux-musl"
profile: minimal
override: true
# multiple additional targets are not supported, so we invoke the action multiple times
# Feature request: https://github.com/actions-rs/toolchain/issues/165
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
target: "i686-unknown-linux-gnu"
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
target: "x86_64-unknown-linux-musl"
- name: "Test on the native x86_64-unknown-linux-gnu"
run: cargo test --all-features --workspace
- name: "Test cross-compiling to x86_64-unknown-linux-musl"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('Cargo.lock') }}
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
override: true
target: "wasm32-unknown-unknown"
targets: "wasm32-unknown-unknown"
- run: cargo test --all-features --workspace
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('Cargo.lock') }}
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
override: true
target: "wasm32-unknown-unknown"
targets: "wasm32-unknown-unknown"
- name: "Test on the native x86_64-pc-windows-mscv"
run: cargo test --all-features --workspace
- name: "Test when cross-compiling to x86_64-pc-windows-gnu"
Expand Down
Loading

0 comments on commit 9702f03

Please sign in to comment.