Skip to content

Commit

Permalink
Fix CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
Auburn committed Jul 17, 2023
1 parent 15cff5e commit 18e06c2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 18e06c2

Please sign in to comment.