Skip to content

Commit

Permalink
set gnu target on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dryajov committed Feb 9, 2024
1 parent d2419e5 commit d32cb41
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,17 @@ jobs:
with:
submodules: 'true'

- name: Set rust target ${{ matrix.os }}
if: matrix.os == 'windows-latest'
run: rustup default-host x86_64-pc-windows-gnu

- name: Setup rust
run: rustup update stable && rustup default stable

- name: Setup nim
uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: rustup update stable && rustup default stable
- run: nimble install -y
- run: nimble test -y

0 comments on commit d32cb41

Please sign in to comment.