mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-23 22:43:32 +00:00
Disable ccache on Windows (fix #3404)
This commit is contained in:
parent
aaf779e399
commit
0aeacd46de
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -36,10 +36,16 @@ jobs:
|
||||
- name: Generating Makefiles
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ "${{ runner.os }}" == "Windows" ]] ; then
|
||||
export enable_ccache=off
|
||||
else
|
||||
export enable_ccache=on
|
||||
fi
|
||||
cmake -S . -B build -G Ninja \
|
||||
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 \
|
||||
-DENABLE_TESTS=ON \
|
||||
-DENABLE_UI=${{ matrix.enable_ui }}
|
||||
-DENABLE_UI=${{ matrix.enable_ui }} \
|
||||
-DENABLE_CCACHE=$enable_ccache
|
||||
- name: Compiling
|
||||
shell: bash
|
||||
run: |
|
||||
|
Loading…
x
Reference in New Issue
Block a user