Skip to content

Commit

Permalink
add install step
Browse files Browse the repository at this point in the history
  • Loading branch information
emrekovanci committed Apr 18, 2024
1 parent 0c3054a commit b15eb7d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ jobs:
cmake --build --preset=${{ matrix.compiler }}-${{ matrix.build_type }}
fi
- name: Install
run: |
if [ "${{ runner.os }}" == "Windows" ]; then
cmake --install out/build/Windows-${{ matrix.compiler }}-${{ matrix.build_type }} --prefix prefix
else
cmake --install out/build/${{ matrix.compiler }}-${{ matrix.build_type }} --prefix prefix
fi
- name: Test
if: ${{ matrix.build_type == 'Debug' }}
shell: bash
Expand Down

0 comments on commit b15eb7d

Please sign in to comment.