From cefb5b4cdce6fc32abfdc70a104a011eb94fc902 Mon Sep 17 00:00:00 2001 From: andiwand Date: Thu, 7 Jul 2022 11:39:51 +0200 Subject: [PATCH] revert CI changes --- .github/workflows/builds.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index c6b7e52b9da..d37d2321b6d 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -284,8 +284,9 @@ jobs: ${{ runner.os }}-ccache-linux-nodeps_${{ env.CCACHE_KEY_SUFFIX }}_ - name: Configure - run: > # disabling ninja because of race condition + run: > cmake -B build -S . + -GNinja -DCMAKE_CXX_COMPILER_LAUNCHER=$(find / -type f -name "ccache") -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-Werror @@ -312,6 +313,7 @@ jobs: run: > ${SETUP} && cmake -B build -S . + -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-Werror -DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" @@ -332,6 +334,7 @@ jobs: run: > ${SETUP} && cmake -B build-downstream-nodeps -S Tests/DownstreamProjectNodeps + -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-Werror -DCMAKE_PREFIX_PATH="${INSTALL_DIR}"