diff options
-rw-r--r-- | .github/workflows/build_cmake.yml | 35 |
1 files 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} |