aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-01-25 16:19:50 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-01-25 18:27:25 +0100
commitd4005a2ee5fbd51ae169b8827421f448a4cf8050 (patch)
tree159d59f3ec4873654c3f10f4e4472543738874e4
parent579fc2504be9e5e0291e44da685f10a21a4c64a5 (diff)
downloadlibquotient-d4005a2ee5fbd51ae169b8827421f448a4cf8050.tar.gz
libquotient-d4005a2ee5fbd51ae169b8827421f448a4cf8050.zip
Use Ninja
-rw-r--r--.github/workflows/ci.yml22
1 files changed, 13 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 52580dd9..bebeff8a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -45,24 +45,28 @@ jobs:
version: '5.9.9'
cached: ${{ steps.cache-qt.outputs.cache-hit }}
- - name: Install Valgrind
- if: contains(matrix.os, 'ubuntu')
+ - name: Install Ninja (macOS)
+ if: ${{ !startsWith(matrix.os, 'ubuntu') }}
+ uses: seanmiddleditch/gha-setup-ninja@v3
+
+ - name: Install Ninja and Valgrind (Linux)
+ if: startsWith(matrix.os, 'ubuntu')
run: |
- sudo apt-get install valgrind
+ sudo apt-get -qq install ninja-build valgrind
echo "VALGRIND=valgrind --tool=memcheck --leak-check=yes --gen-suppressions=all --suppressions=quotest/.valgrind.supp" >>$GITHUB_ENV
- name: Setup build environment
run: |
if [ "${{ matrix.compiler }}" == "GCC" ]; then
- if [ -n "${{ matrix.update-api }}" ]; then VERSION_POSTFIX='-8'; fi
- echo "CC=gcc$VERSION_POSTFIX" >>$GITHUB_ENV
- echo "CXX=g++$VERSION_POSTFIX" >>$GITHUB_ENV
+ if [ -n "${{ matrix.update-api }}" ]; then VERSION_POSTFIX='-8'; fi
+ echo "CC=gcc$VERSION_POSTFIX" >>$GITHUB_ENV
+ echo "CXX=g++$VERSION_POSTFIX" >>$GITHUB_ENV
else
- echo "CC=clang" >>$GITHUB_ENV
- echo "CXX=clang++" >>$GITHUB_ENV
+ echo "CC=clang" >>$GITHUB_ENV
+ echo "CXX=clang++" >>$GITHUB_ENV
fi
echo "QUOTEST_ORIGIN=${{ github.ref }} @ ${{ runner.os }}/${{ matrix.compiler }}" >>$GITHUB_ENV
- echo "CMAKE_ARGS=-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+ echo "CMAKE_ARGS=-G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=~/.local -DCMAKE_PREFIX_PATH=~/.local" >>$GITHUB_ENV
cmake -E make_directory ${{ runner.workspace }}/build