diff options
| author | Mike Taves <mwtoews@gmail.com> | 2022-01-24 00:45:14 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-24 00:45:14 +1300 |
| commit | 93a533906e855a19ab5e64849df91e6fe9940712 (patch) | |
| tree | 93216e4c071bfaf79beaf9c4e0874d79f39a2db6 /.github/workflows/linux_gcc_5_4 | |
| parent | 93c3a165126ac4c7caf4d2ffa2f7dd71633e7be3 (diff) | |
| download | PROJ-93a533906e855a19ab5e64849df91e6fe9940712.tar.gz PROJ-93a533906e855a19ab5e64849df91e6fe9940712.zip | |
CI: transition tests from autotools to cmake (#3023)
Diffstat (limited to '.github/workflows/linux_gcc_5_4')
| -rwxr-xr-x | .github/workflows/linux_gcc_5_4/start.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/.github/workflows/linux_gcc_5_4/start.sh b/.github/workflows/linux_gcc_5_4/start.sh index 1dd8e3b0..fc7abb1e 100755 --- a/.github/workflows/linux_gcc_5_4/start.sh +++ b/.github/workflows/linux_gcc_5_4/start.sh @@ -23,13 +23,6 @@ python3 -m pip install --user cmake==3.9.6 export PATH=$HOME/.local/bin:$PATH -export CC="ccache gcc" -export CXX="ccache g++" - -NPROC=$(nproc) -echo "NPROC=${NPROC}" -export MAKEFLAGS="-j ${NPROC}" - cd "$WORK_DIR" if test -f "$WORK_DIR/ccache.tar.gz"; then @@ -37,16 +30,12 @@ if test -f "$WORK_DIR/ccache.tar.gz"; then (cd $HOME && tar xzf "$WORK_DIR/ccache.tar.gz") fi -export CCACHE_CPP2=yes export PROJ_DB_CACHE_DIR="$HOME/.ccache" ccache -M 500M -ccache -s CFLAGS="-Werror $CFLAGS" CXXFLAGS="-Werror $CXXFLAGS" ./travis/install.sh -ccache -s - echo "Saving ccache..." rm -f "$WORK_DIR/ccache.tar.gz" (cd $HOME && tar czf "$WORK_DIR/ccache.tar.gz" .ccache) |
