Skip to content

Commit 21723ae

Browse files
committed
Tooling
1 parent bc9a483 commit 21723ae

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/native_image.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ jobs:
2323
runs-on: ${{ matrix.os }}
2424
steps:
2525
- uses: actions/checkout@v2
26-
- uses: DeLaGuardo/setup-graalvm@5.0
26+
- uses: graalvm/setup-graalvm@v1
2727
with:
28-
graalvm-version: ${{ env.GRAALVM_VERSION }}
28+
java-version: '25'
29+
distribution: 'graalvm'
30+
github-token: ${{ secrets.GITHUB_TOKEN }}
2931
- uses: DeLaGuardo/setup-clojure@3.5
3032
with:
3133
tools-deps: ${{ env.CLOJURE_CLI_VERSION }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ compilec:
5757
$(CC) -g -shared -fpic -I${JAVA_HOME}/include -I${JAVA_HOME}/include/$(ARCH) src_jni/Daemon.c -o lib/libDaemon.$(EXT)
5858

5959
nativeimage:
60-
clojure -A:native-image
60+
clojure -M:native-image
6161

6262
# $(CC) -g -static -fpic -I${JAVA_HOME}/include -I${JAVA_HOME}/include/$(ARCH) src_jni/Daemon.c -o lib/libDaemon.$(EXT)
6363
# rm -f lib/libDaemon.a

bin/funnel_wrapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# project. When using the system `funnel` it will do a version check and warn if
66
# the version is older than what is requested.
77

8-
funnel_version="1.5.85"
8+
funnel_version="unreleased"
99
store_dir="$(pwd)/.store"
1010
install_dir="${store_dir}/funnel-${funnel_version}"
1111

0 commit comments

Comments
 (0)