Skip to content

Commit

Permalink
[CI] Fix caching.
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed May 28, 2020
1 parent 8d2f998 commit 875efa5
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion scripts/ci/extends/template-build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
- .test-artifacts

variables:
CCACHE_DIR: "$CI_PROJECT_DIR/.ccache"

script:
- mkdir -p $BUILD_DIR
Expand Down
1 change: 0 additions & 1 deletion scripts/ci/jobs/build-gui-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ build gui linux:

variables:
BUILD_DIR: "build-gui-linux"
CCACHE_DIR: "$CI_PROJECT_DIR/.ccache"
CMAKE_ARGS: >-
-DOGS_USE_CONAN=ON
-DOGS_USE_PCH=OFF
Expand Down
1 change: 0 additions & 1 deletion scripts/ci/jobs/build-gui-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ build gui mac:

variables:
BUILD_DIR: "build-gui-mac"
CCACHE_DIR: "$CI_PROJECT_DIR/.ccache"
CMAKE_ARGS: >-
-DOGS_USE_CONAN=OFF
-DOGS_USE_PCH=OFF
Expand Down
1 change: 0 additions & 1 deletion scripts/ci/jobs/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ build linux:

variables:
BUILD_DIR: "build"
CCACHE_DIR: "$CI_PROJECT_DIR/.ccache"
CMAKE_ARGS: "-DOGS_USE_CONAN=OFF"

image:
Expand Down
1 change: 0 additions & 1 deletion scripts/ci/jobs/build-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ build mac:

variables:
BUILD_DIR: "build-mac"
CCACHE_DIR: "$CI_PROJECT_DIR/.ccache"
4 changes: 4 additions & 0 deletions scripts/ci/jobs/check-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ check header:
-DCMAKE_BUILD_TYPE=$BUILD_TYPE
-DOGS_BUILD_PROCESSES=$BUILD_PROCESSES
- cat CMakeFiles/CMakeError.log || true

cache:
paths:
- $CCACHE_DIR

0 comments on commit 875efa5

Please sign in to comment.