mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-29 01:20:17 +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
|
- name: Generating Makefiles
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
if [[ "${{ runner.os }}" == "Windows" ]] ; then
|
||||||
|
export enable_ccache=off
|
||||||
|
else
|
||||||
|
export enable_ccache=on
|
||||||
|
fi
|
||||||
cmake -S . -B build -G Ninja \
|
cmake -S . -B build -G Ninja \
|
||||||
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 \
|
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 \
|
||||||
-DENABLE_TESTS=ON \
|
-DENABLE_TESTS=ON \
|
||||||
-DENABLE_UI=${{ matrix.enable_ui }}
|
-DENABLE_UI=${{ matrix.enable_ui }} \
|
||||||
|
-DENABLE_CCACHE=$enable_ccache
|
||||||
- name: Compiling
|
- name: Compiling
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user