Skip to content

Commit

Permalink
ci: attempt to fix runner target
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Jan 2, 2025
1 parent 7eb51f6 commit d365df4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ env:
CARGO_TERM_COLOR: always
jobs:
bindgen:
runs-on: windows-2025
strategy:
matrix:
os: windows-2025
target: [x86_64-pc-windows-msvc, i686-pc-windows-msvc, aarch64-pc-windows-msvc]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with: { submodules: recursive }
- name: Install Rust
uses: dtolnay/rust-toolchain@nightly
with:
targets: 'x86_64-pc-windows-msvc,i686-pc-windows-msvc,aarch64-pc-windows-msvc'
targets: ${{ matrix.target }}
components: rustfmt
- name: Build
run: cargo build -vv -F regenerate --target ${{ matrix.target }}
Expand Down

0 comments on commit d365df4

Please sign in to comment.