Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GiulioRomualdi authored Aug 31, 2019
1 parent 5e973ec commit 05220c8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
build_type: [Debug, Release]
os: [ubuntu-latest, macOS-latest]
os: [ubuntu-latest, macOS-latest, windows-latest]


# operating system dependences
Expand All @@ -25,6 +25,12 @@ jobs:
export PATH="/usr/local/opt/ccache/libexec:$PATH"
brew install eigen pkg-config
- name: Dependencies [windows]
if: matrix.os == 'windows-latest'
run: |
vcpkg.exe install --triplet x64-windows gtest eigen3
- name: Dependencies [Ubuntu]
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down Expand Up @@ -65,6 +71,7 @@ jobs:
cmake --build . --config ${{ matrix.build_type }}
- name: Test
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
shell: bash
run: |
export DYLD_LIBRARY_PATH=${GITHUB_WORKSPACE}/install/lib
Expand Down

0 comments on commit 05220c8

Please sign in to comment.