File tree Expand file tree Collapse file tree 4 files changed +30
-19
lines changed
Expand file tree Collapse file tree 4 files changed +30
-19
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,14 @@ jobs:
1919 steps :
2020 - uses : actions/checkout@v1
2121
22- - name : Install dependencies
23- run : |
24- sudo add-apt-repository ppa:mhier/libboost-latest
25- sudo apt-get update
26- sudo apt-get install libboost1.74 libboost1.74-dev -y
22+ # - name: Install dependencies
23+ # run: |
24+ # sudo add-apt-repository ppa:mhier/libboost-latest
25+ # sudo apt-get update
26+ # sudo apt-get install libboost1.74 libboost1.74-dev -y
27+
28+ - name : Export boost environment
29+ run : " export BOOST_ROOT=$BOOST_ROOT_1_72_0"
2730
2831 - name : build and install library
2932 run : |
Original file line number Diff line number Diff line change @@ -16,14 +16,17 @@ jobs:
1616 steps :
1717 - uses : actions/checkout@v1
1818
19- - name : Install dependencies
20- run : |
21- sudo add-apt-repository ppa:mhier/libboost-latest
22- sudo apt-get update
23- sudo apt-get install libboost1.74 libboost1.74-dev -y
19+ # - name: Install dependencies
20+ # run: |
21+ # sudo add-apt-repository ppa:mhier/libboost-latest
22+ # sudo apt-get update
23+ # sudo apt-get install libboost1.74 libboost1.74-dev -y
24+
25+ - name : Export boost environment
26+ run : " export BOOST_ROOT=$BOOST_ROOT_1_72_0"
2427
2528 - name : configure
26- run : cmake -Hstandalone -Bbuild
29+ run : BOOST_ROOT=$BOOST_ROOT_1_72_0 cmake -Hstandalone -Bbuild
2730
2831 - name : build
2932 run : cmake --build build -j4
Original file line number Diff line number Diff line change @@ -20,11 +20,14 @@ jobs:
2020 steps :
2121 - uses : actions/checkout@v1
2222
23- - name : Install dependencies
24- run : |
25- sudo add-apt-repository ppa:mhier/libboost-latest
26- sudo apt-get update
27- sudo apt-get install libboost1.74 libboost1.74-dev -y
23+ # - name: Install dependencies
24+ # run: |
25+ # sudo add-apt-repository ppa:mhier/libboost-latest
26+ # sudo apt-get update
27+ # sudo apt-get install libboost1.74 libboost1.74-dev -y
28+
29+ - name : Export boost environment
30+ run : " export BOOST_ROOT=$BOOST_ROOT_1_72_0"
2831
2932 - name : configure
3033 run : cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1
Original file line number Diff line number Diff line change @@ -19,10 +19,12 @@ jobs:
1919 steps :
2020 - uses : actions/checkout@v1
2121
22+ - name : Export boost environment
23+ run : " echo ::set-env name=BOOST_ROOT::%BOOST_ROOT_1_72_0%"
24+ shell : cmd
25+
2226 - name : configure
23- run : |
24- $env:BOOST_ROOT = $env:BOOST_ROOT_1_72_0
25- cmake -Htest -Bbuild
27+ run : cmake -Htest -Bbuild
2628
2729 - name : build
2830 run : cmake --build build --config Debug -j4
You can’t perform that action at this time.
0 commit comments