From 31c11175be333d64fac3eb2837982a48910dec61 Mon Sep 17 00:00:00 2001 From: Jorrit Rouwe Date: Wed, 25 Sep 2024 20:32:57 +0200 Subject: [PATCH] Moved parameters on a single line --- .github/workflows/build.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cd8524120..b1aab74d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,12 +48,7 @@ jobs: uses: actions/checkout@v4 - name: Configure CMake working-directory: ${{github.workspace}}/Build - run: ./cmake_linux_clang_gcc.sh ReleaseTSAN ${{env.UBUNTU_CLANG_VERSION}} \ - -DTARGET_VIEWER=OFF \ - -DTARGET_SAMPLES=OFF \ - -DTARGET_HELLO_WORLD=OFF \ - -DTARGET_UNIT_TESTS=ON \ - -DTARGET_PERFORMANCE_TEST=ON + run: ./cmake_linux_clang_gcc.sh ReleaseTSAN ${{env.UBUNTU_CLANG_VERSION}} -DTARGET_VIEWER=OFF -DTARGET_SAMPLES=OFF -DTARGET_HELLO_WORLD=OFF -DTARGET_UNIT_TESTS=ON -DTARGET_PERFORMANCE_TEST=ON - name: Build run: cmake --build ${{github.workspace}}/Build/Linux_ReleaseTSAN -j $(nproc) - name: Unit Tests