We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb7cde8 commit 91e4388Copy full SHA for 91e4388
.github/workflows/native-tests-daily.yml
@@ -9,6 +9,8 @@ on:
9
jobs:
10
graalvm-native-tests:
11
uses: ./.github/workflows/reusable-native-tests.yml
12
+ env:
13
+ LATEST_DEPS: "true"
14
15
workflow-notification:
16
needs:
.github/workflows/reusable-native-tests.yml
@@ -32,5 +32,9 @@ jobs:
32
# therefore we're starting a Kafka container manually for the tests
33
docker compose -f .github/graal-native-docker-compose.yaml up -d
34
# don't wait for startup - gradle compile takes long enough
35
- ./gradlew -PtestLatestDeps=true nativeTest
+ PROFILES=""
36
+ if [ -n "$LATEST_DEPS" ]; then
37
+ PROFILES="-PtestLatestDeps=true"
38
+ fi
39
+ ./gradlew $PROFILES nativeTest
40
docker compose -f .github/graal-native-docker-compose.yaml down # is this needed?
0 commit comments