We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 386dd83 commit 9501831Copy full SHA for 9501831
1 file changed
.github/workflows/build-wasm.yml
@@ -53,8 +53,10 @@ jobs:
53
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
54
55
- name: Build
56
+ env:
57
+ CCACHE_SLOPPINESS: time_macros
58
run: |
- emcmake cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }} \
59
+ emcmake cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build }} \
60
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
61
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
- make
62
+ cmake --build build -j $(nproc)
0 commit comments