Skip to content

Commit f2dadda

Browse files
committed
change to internal boost
1 parent c375fc7 commit f2dadda

File tree

4 files changed

+30
-19
lines changed

4 files changed

+30
-19
lines changed

.github/workflows/install.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff 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: |

.github/workflows/standalone.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/ubuntu.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/windows.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)