Skip to content

Commit f15a249

Browse files
brentphdashnow
authored andcommitted
ci
1 parent e1b62fe commit f15a249

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build-test:
1212
runs-on: ubuntu-latest
1313
env:
14-
NIM_VERSION: stable
14+
NIM_VERSION: 1.6.10
1515
HTSLIB_VERSION: 1.22.1
1616
steps:
1717
- name: Checkout
@@ -27,9 +27,11 @@ jobs:
2727
2828
- name: Setup Nim
2929
run: |
30+
export CHOOSENIM_CHOOSE_VERSION=$NIM_VERSION
3031
curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
3132
sh init.sh -y
3233
echo "$HOME/.nimble/bin" >> $GITHUB_PATH
34+
export PATH=/home/runner/.nimble/bin:$PATH
3335
3436
- name: Install system build deps
3537
run: |
@@ -66,9 +68,11 @@ jobs:
6668
uses: actions/checkout@v4
6769
- name: Setup Nim
6870
run: |
71+
export CHOOSENIM_CHOOSE_VERSION=$NIM_VERSION
6972
curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
7073
sh init.sh -y
7174
echo "$HOME/.nimble/bin" >> $GITHUB_PATH
75+
export PATH=/home/runner/.nimble/bin:$PATH
7276
- name: Install system build deps
7377
run: |
7478
sudo apt-get update

strling.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ license = "MIT"
1717

1818
# Dependencies
1919

20-
requires "nim >= 0.18.0", "kmer >= 0.2.2", "hts", "itertools", "argparse >= 0.7.0 & < 1.0", "msgpack4nim", "lapper"
20+
requires "nim >= 0.18.0", "kmer >= 0.2.2", "hts", "itertools", "argparse >= 0.7.0 & < 1.0", "msgpack4nim >= 0.4.2", "lapper"
2121
bin = @["strling"]
2222

2323
srcDir = "src"

0 commit comments

Comments
 (0)