From 59c3af9180eb897a9e12f58c2b336463a79a0f8a Mon Sep 17 00:00:00 2001 From: loanselot1 Date: Sat, 8 May 2021 13:42:30 +0300 Subject: [PATCH] Fix syntax error at ci.yml --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48ac8d7..b24d796 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: cc: clang cxx: clang++ - os: macos-latest + env: # Indicates the CMake build directory where project files and binaries are being produced. CMAKE_BUILD_DIR: ${{ github.workspace }}/build/ @@ -30,7 +31,7 @@ jobs: CC: ${{ matrix.cc }} CXX: ${{ matrix.cxx }} - steps: + steps: - uses: actions/checkout@v2 with: submodules: recursive @@ -49,6 +50,7 @@ jobs: - name: Generate project files run: | cmake -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=Release + # Build the whole project with Ninja (which is spawn by CMake). - name: Build run: |