Skip to content

Commit

Permalink
ci: use older balls for nimskull only
Browse files Browse the repository at this point in the history
  • Loading branch information
alaviss committed Jan 18, 2024
1 parent 5ca25e3 commit 0363d23
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,14 @@ jobs:
run: |
cd project
nimble --accept develop
nimble --accept install "https://github.com/disruptek/[email protected]"
if [[ $NIM == nimskull ]]; then
# Use older balls for nimskull
nimble --accept install "https://github.com/disruptek/[email protected]"
else
nimble --accept install "https://github.com/disruptek/balls"
fi
env:
NIM: ${{ matrix.compiler.name }}

- name: Examples
shell: bash
Expand Down

0 comments on commit 0363d23

Please sign in to comment.