Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .circleci/ccache.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
debug = true
debug_level = 1
compiler_check = none
13 changes: 8 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,6 @@ commands:
- run:
name: "Ccache stats and configuration"
command: |
ls -l ~/cache/sysroot/lib/wasm32-emscripten || echo "no build"
ls -l ~/cache/sysroot/include/emscripten/heap.h
cat ~/cache/sysroot/lib/wasm32-emscripten/crtbegin.o.ccache-log
date
cat ~/cache/build/libcompiler_rt/absvdi2.o.ccache-log
ccache -s
ccache --print-stats
ccache -p
Expand Down Expand Up @@ -617,6 +612,14 @@ jobs:
mkdir -p ~/.ccache
cat .circleci/ccache.conf
cp .circleci/ccache.conf ~/.ccache
- when:
condition:
not:
equal: [ "main", << pipeline.git.branch >> ]
steps:
- run:
name: Set ccache readonly
command: echo "read_only = true" >> ~/.ccache/ccache.conf
- build-libs
- run:
name: Clean build directory
Expand Down