Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gcontini committed May 19, 2021
1 parent 90ff59f commit 1d86130
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/cpp.yml → .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,18 @@ jobs:
- name: Setup
shell: bash
run: env
- name: install boost
- name: install boost boost-msvc-14.2
shell: bash
if: ${{ matrix.os == "windows-2019" }}
run: |
choco install -y boost-msvc-14.2
echo "BOOST_ROOT=C:/local/boost_1_74_0" >> $GITHUB_ENV
choco install -y boost-msvc-14.2 --version 1.74.0
echo "BOOST_ROOT=C:/local/boost_1_74_0" >> $GITHUB_ENV
- name: install boost boost-msvc-14.1
shell: bash
if: ${{ matrix.os == "windows-2016" }}
run: |
choco install -y boost-msvc-14.1 --version 1.74.0
echo "BOOST_ROOT=C:/local/boost_1_74_0" >> $GITHUB_ENV
- name: Compile
run: |
cd build
Expand Down

0 comments on commit 1d86130

Please sign in to comment.