Skip to content

Commit

Permalink
ci: attempt to fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Jan 2, 2025
1 parent 1abed15 commit 66e88cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
strategy:
matrix:
os: [windows-2025]
target: [x86_64-pc-windows-msvc, i686-pc-windows-msvc, aarch64-pc-windows-msvc]
target: [aarch64-pc-windows-msvc, x86_64-pc-windows-msvc, i686-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: 'aarch64-pc-windows-msvc,x86_64-pc-windows-msvc,i686-pc-windows-msvc'
components: rustfmt
- name: Build
run: cargo build -vv -F regenerate --target ${{ matrix.target }}
Expand Down

0 comments on commit 66e88cd

Please sign in to comment.