MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

path caching!

+2 -2
+2 -2
.github/workflows/build-platform.yml
··· 187 187 uses: ./.github/actions/build-native-deps 188 188 with: 189 189 deps: ${{ steps.config.outputs.deps }} 190 - prefix: ${{ runner.temp }}/deps-cache 190 + prefix: ${{ github.workspace }}/.deps-cache 191 191 cc: ${{ steps.llvm.outputs.cc }} 192 192 cxx: ${{ steps.llvm.outputs.cxx }} 193 193 ar: ${{ steps.llvm.outputs.ar }} ··· 210 210 ranlib: ${{ steps.llvm.outputs.ranlib }} 211 211 ld: ${{ steps.llvm.outputs.ld }} 212 212 strip: ${{ steps.llvm.outputs.strip }} 213 - deps_prefix: ${{ runner.temp }}/deps-cache 213 + deps_prefix: ${{ github.workspace }}/.deps-cache 214 214 build_timestamp: ${{ inputs.build_timestamp }} 215 215 tls_library: ${{ steps.config.outputs.tls_library }} 216 216 static_link: ${{ steps.config.outputs.static_link }}