Skip to content

Commit 91e4388

Browse files
committed
test latest deps in daily build
1 parent eb7cde8 commit 91e4388

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/native-tests-daily.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
jobs:
1010
graalvm-native-tests:
1111
uses: ./.github/workflows/reusable-native-tests.yml
12+
env:
13+
LATEST_DEPS: "true"
1214

1315
workflow-notification:
1416
needs:

.github/workflows/reusable-native-tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,9 @@ jobs:
3232
# therefore we're starting a Kafka container manually for the tests
3333
docker compose -f .github/graal-native-docker-compose.yaml up -d
3434
# don't wait for startup - gradle compile takes long enough
35-
./gradlew -PtestLatestDeps=true nativeTest
35+
PROFILES=""
36+
if [ -n "$LATEST_DEPS" ]; then
37+
PROFILES="-PtestLatestDeps=true"
38+
fi
39+
./gradlew $PROFILES nativeTest
3640
docker compose -f .github/graal-native-docker-compose.yaml down # is this needed?

0 commit comments

Comments
 (0)