diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2020-03-11 17:16:48 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2020-03-11 17:16:48 +0000 |
| commit | 5a92d8aee732cafd93b5fc9ec23f597a9aba0a5a (patch) | |
| tree | cf82a8c5bfac830d80dac9b88e811fbddcc10100 | |
| parent | 486e72bd32517e12093c786116eb7238b7ed9272 (diff) | |
| download | PROJ-5a92d8aee732cafd93b5fc9ec23f597a9aba0a5a.tar.gz PROJ-5a92d8aee732cafd93b5fc9ec23f597a9aba0a5a.zip | |
.cirrus.yml: disable ccache as cache uploading can be super slow
| -rw-r--r-- | .cirrus.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 86e90ae2..086e6875 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -13,14 +13,15 @@ task: CIRRUS_CLONE_DEPTH: 1 MAKE_FLAGS: -j 4 - cache: - folder: $HOME/.ccache + # Disable cache: its upload can take up to 30 minutes! + #cache: + # folder: $HOME/.ccache pkginstall_script: - pkg install -y autoconf automake libtool pkgconf sqlite3 tiff ccache gmake configure_script: - ./autogen.sh - - CC="ccache cc" CXX="ccache c++" ./configure --disable-static + - ./configure --disable-static compile_script: - gmake $(MAKE_FLAGS) test_script: |
