We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8378f3 commit b7496e1Copy full SHA for b7496e1
1 file changed
.github/workflows/tests.yml
@@ -11,7 +11,9 @@ jobs:
11
build-and-test:
12
name: Build and test
13
runs-on: warp-ubuntu-latest-x64-4x
14
- timeout-minutes: 10
+ # The full `./gradlew build` now also compiles the Rust shared-core cdylib (release) before
15
+ # the JVM build + tests, so 10m is too tight on a cold runner.
16
+ timeout-minutes: 30
17
steps:
18
- uses: actions/checkout@v4
19
# The SDK is built with JDK 25: the jextract Gradle plugin requires the Gradle daemon to run
@@ -45,7 +47,8 @@ jobs:
45
47
test-javadocs:
46
48
name: Test Javadocs and dokka
49
50
+ # Building the docs also compiles the Rust cdylib (for the jextract header), so bump from 10m.
51
+ timeout-minutes: 20
52
53
54
- uses: actions/setup-java@v4
0 commit comments