Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rekola committed Feb 6, 2024
1 parent 62dabe1 commit 88c745d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,20 @@ jobs:
- uses: actions/checkout@v3

# Compile
- name: Compilation
- name: Configure
run: |
sudo apt install catch2
# Build
- name: Build
run: |
mkdir build
cd build
cmake ..
make
# Test
- name: Testing
- name: Test
run: |
cd build
./tests
7 changes: 3 additions & 4 deletions .github/workflows/vs17-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ jobs:
run: |
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg integrate install
./vcpkg install catch2
cd ..
./vcpkg/bootstrap-vcpkg.sh
vcpkg integrate install
vcpkg install catch2
mkdir build
cd build && cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} ..
- name: Build
Expand Down

0 comments on commit 88c745d

Please sign in to comment.