Skip to content

Commit 9940a16

Browse files
committed
upgrade
1 parent e3a9bb0 commit 9940a16

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.github/workflows/language_bindings.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ jobs:
108108
matrix:
109109
os:
110110
- ubuntu-latest
111+
nim_version:
112+
- '2.0.0'
111113
java_version:
112114
- '16'
113115
gradle_version:
@@ -116,12 +118,17 @@ jobs:
116118
TIMEOUT_EXIT_STATUS: 124
117119
steps:
118120
- uses: actions/checkout@v4
119-
- uses: actions/cache@v4
121+
- uses: jiro4989/setup-nim-action@v1
120122
with:
121-
path: |
122-
~/.nimble
123-
~/.choosenim
124-
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }}
123+
nim-version: ${{ matrix.nim_version }}
124+
- name: Install dependencies 🔃
125+
run: |
126+
nimble refresh
127+
nimble install -y -d
128+
nimble install -y jnim
129+
nimble install -y checksums
130+
nimble list --installed
131+
nim -v
125132
- uses: gradle/gradle-build-action@v2.4.2
126133
id: setup-gradle
127134
with:
0 Bytes
Binary file not shown.

src/happyx/hpx.nim.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
--threads:on
22
--colors:on
3+
--noNimblePath
34
--opt:speed
45
--app:console
56
-d:release

0 commit comments

Comments
 (0)