From a9bbed9de5b0f97da00341ff50556faa0a3db048 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Sat, 12 Dec 2020 16:48:57 +0100 Subject: Fixed syntax error in yml script --- .github/workflows/build_cmake.yml | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index ea819ad..4854d82 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -17,26 +17,27 @@ jobs: } steps: - uses: actions/checkout@v1 + - name: Configure - shell: cmake -P {0} - run: | - set(ENV{CC} ${ { matrix.config.cc } }) - set(ENV{CXX} ${ { matrix.config.cxx } }) + shell: cmake -P {0} + run: | + set(ENV{CC} ${ { matrix.config.cc } }) + set(ENV{CXX} ${ { matrix.config.cxx } }) - file(TO_CMAKE_PATH "$ENV{GITHUB_WORKSPACE}/ninja" ninja_program) + file(TO_CMAKE_PATH "$ENV{GITHUB_WORKSPACE}/ninja" ninja_program) - execute_process( - COMMAND ${ { steps.cmake_and_ninja.outputs.cmake_dir } }/cmake - -S . - -B build - -D CMAKE_BUILD_TYPE=${ { matrix.config.build_type } } - -G Ninja - -D CMAKE_MAKE_PROGRAM=${ninja_program} - RESULT_VARIABLE result - ) - if (NOT result EQUAL 0) - message(FATAL_ERROR "Bad exit status") - endif() + execute_process( + COMMAND ${ { steps.cmake_and_ninja.outputs.cmake_dir } }/cmake + -S . + -B build + -D CMAKE_BUILD_TYPE=${ { matrix.config.build_type } } + -G Ninja + -D CMAKE_MAKE_PROGRAM=${ninja_program} + RESULT_VARIABLE result + ) + if (NOT result EQUAL 0) + message(FATAL_ERROR "Bad exit status") + endif() - name: Build shell: cmake -P {0} -- cgit v0.12