diff options
| author | James McCoy <jamessan@jamessan.com> | 2020-11-14 20:36:44 -0500 |
|---|---|---|
| committer | James McCoy <jamessan@jamessan.com> | 2020-11-14 21:28:59 -0500 |
| commit | 392ec5a43f85c9442097e1804f6c30d47ad0f07e (patch) | |
| tree | de5e163a35d6052f00b784f59bcccee5b03867c3 /.github/workflows | |
| parent | 5271f1e2c9d6df15244cb4f7d8b63d88abc6717b (diff) | |
| download | rneovim-392ec5a43f85c9442097e1804f6c30d47ad0f07e.tar.gz rneovim-392ec5a43f85c9442097e1804f6c30d47ad0f07e.tar.bz2 rneovim-392ec5a43f85c9442097e1804f6c30d47ad0f07e.zip | |
ci: Remove $CCACHE_CPP2
The env var is being set to the default value, as of ccache 3.3, which
is available in Zesty and newer. All of our CI is using Bionic, so this
is already available.
Diffstat (limited to '.github/workflows')
| -rwxr-xr-x | .github/workflows/env.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh index 8e005c7266..84f26f949e 100755 --- a/.github/workflows/env.sh +++ b/.github/workflows/env.sh @@ -24,7 +24,6 @@ DEPS_CMAKE_FLAGS=-DUSE_BUNDLED_GPERF=OFF FUNCTIONALTEST=functionaltest CCACHE_COMPRESS=1 CCACHE_SLOPPINESS=time_macros,file_macro -CCACHE_CPP2=1 EOF BUILD_FLAGS="CMAKE_FLAGS=-DCI_BUILD=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX:PATH=$HOME/nvim-install -DBUSTED_OUTPUT_TYPE=nvim -DDEPS_PREFIX=$HOME/nvim-deps/usr -DMIN_LOG_LEVEL=3" |