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 19fd715 commit fa0b7c0Copy full SHA for fa0b7c0
.github/actions/setup-build/action.yml
@@ -20,6 +20,17 @@ runs:
20
path: 'aws-crt-kotlin'
21
repository: 'awslabs/aws-crt-kotlin'
22
23
+ # Cache the Kotlin/Native toolchain based on the input Kotlin version from version catalog
24
+ # see https://kotlinlang.org/docs/native-improving-compilation-time.html
25
+ - name: Cache Kotlin Native toolchain
26
+ uses: actions/cache@v4
27
+ with:
28
+ path: |
29
+ ~/.konan
30
+ key: ${{ runner.os }}-konan-${{ hashFiles('gradle/libs.versions.toml') }}
31
+ restore-keys: |
32
+ ${{ runner.os }}-konan-
33
+
34
- name: Configure JDK
35
uses: actions/setup-java@v3
36
with:
0 commit comments