Skip to content

Commit b8440ef

Browse files
committed
use env so that renovate can update graalvm
Signed-off-by: Gregor Zeitlinger <[email protected]>
1 parent eb7fc7c commit b8440ef

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/native-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
uses: actions/checkout@v4
1616
- uses: jdx/mise-action@13abe502c30c1559a5c37dff303831bab82c9402 # v2.2.3
1717
env:
18-
MISE_ENABLE_TOOLS: java
18+
MISE_ENV: native
1919
- name: Run native tests
20-
run: mise run native-test
20+
run: mise run test

mise.native.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[tools]
2+
java = "graalvm-community-24.0.1"
3+
4+
[tasks.test]
5+
depends = "build"
6+
run = "../../mvnw test -PnativeTest"
7+
dir = "integration-tests/it-spring-boot-smoke-test"
8+

mise.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,6 @@ description = "Run OATs acceptance tests"
5050
depends = "build"
5151
run = "oats -timeout 5m examples/"
5252

53-
[tasks.native-test]
54-
depends = "build"
55-
tools.java = "graalvm-22.3.3+java17"
56-
run = "../../mvnw test -PnativeTest"
57-
dir = "integration-tests/it-spring-boot-smoke-test"
58-
5953
[tasks.set-version]
6054
run = './scripts/set-version.sh {{arg(name="version")}}'
6155

0 commit comments

Comments
 (0)