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 6c9c939 commit cd05674Copy full SHA for cd05674
ofGen/compile.sh
@@ -94,7 +94,12 @@ if command -v cmake &> /dev/null; then
94
else
95
# cmake not found. lets go for the alternative.
96
if command -v chalet &> /dev/null; then
97
- chalet bundle &&
+ CCACHE_PARAM=""
98
+ if [[ "${CI:-false}" == "true" ]]; then
99
+ CCACHE_PARAM=" --compiler-cache"
100
+ fi
101
+
102
+ chalet bundle ${CCACHE_PARAM} &&
103
if [[ -d "./dist" ]]; then
104
DIST_PATH=$(cygpath -w "$(pwd)/dist")
105
powershell.exe -ExecutionPolicy Bypass -Command "
0 commit comments