From 18e06c2e9b39ced08fd607ccab864a01efe23d21 Mon Sep 17 00:00:00 2001 From: Jordan Peck Date: Mon, 17 Jul 2023 21:00:19 +0100 Subject: [PATCH] Fix CI build --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ce6e7d..0d210fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,14 +40,14 @@ jobs: - name: 'Checkout' uses: actions/checkout@v3 - - name: 'CMake Build Debug' + - name: 'CMake Configure Debug' run: cmake -S ${{ github.workspace }} -B ${{ github.workspace }}/debug -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/install/FastSIMD" ${{ matrix.cmake_options }} - #- name: 'CMake Install Debug' - # run: cmake --build ${{ github.workspace }}/debug --config Debug --target install --parallel 4 + - name: 'CMake Build Debug' + run: cmake --build ${{ github.workspace }}/debug --config Debug --parallel 4 - - name: 'CMake Build Release' + - name: 'CMake Configure Release' run: cmake -S ${{ github.workspace }} -B ${{ github.workspace }}/release -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/install/FastSIMD" ${{ matrix.cmake_options }} - #- name: 'CMake Install Release' - # run: cmake --build ${{ github.workspace }}/release --config Release --target install --parallel 4 + - name: 'CMake Build Release' + run: cmake --build ${{ github.workspace }}/release --config Release --parallel 4