Does anyone know how to get kotlin native cinterop...
# random
z
Does anyone know how to get kotlin native cinterop and gradle configuration cache to work in GitHub workflows maybe someone has something I can take a look at?
Copy code
Calculating task graph as configuration cache cannot be reused because the file system entry '../../../.konan/kotlin-native-prebuilt-linux-x86_64-2.0.0-RC2/konan/konan.properties' has been removed.
I wasn't sure what channel to use since this isn't coding
a
you could try caching the
~/.konan
dir https://github.com/aSemy/kotlinx.serialization/blob/7ac910fef5ac8546c04d7a6d0b2304156d9959ee/.github/workflows/publish_task.yml#L54-L58
Copy code
- name: cache kotlin-konan
        uses: actions/cache@v3
        with:
          path: ~/.konan
          key: ${{ runner.os }}-kotlin-konan
I think asking in #C19FD9681 or #C3SGXARS6 would also be suitable - but asking here is fine too