Skip to content

Commit 698e94d

Browse files
committed
change env vars
1 parent f2dadda commit 698e94d

File tree

3 files changed

+2
-11
lines changed

3 files changed

+2
-11
lines changed

.github/workflows/install.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,9 @@ jobs:
2525
#sudo apt-get update
2626
#sudo apt-get install libboost1.74 libboost1.74-dev -y
2727

28-
- name: Export boost environment
29-
run: "export BOOST_ROOT=$BOOST_ROOT_1_72_0"
30-
3128
- name: build and install library
3229
run: |
33-
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
30+
BOOST_ROOT=$BOOST_ROOT_1_72_0 cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
3431
sudo cmake --build build --target install
3532
rm -rf build
3633

.github/workflows/standalone.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ jobs:
2222
#sudo apt-get update
2323
#sudo apt-get install libboost1.74 libboost1.74-dev -y
2424

25-
- name: Export boost environment
26-
run: "export BOOST_ROOT=$BOOST_ROOT_1_72_0"
27-
2825
- name: configure
2926
run: BOOST_ROOT=$BOOST_ROOT_1_72_0 cmake -Hstandalone -Bbuild
3027

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,8 @@ jobs:
2626
#sudo apt-get update
2727
#sudo apt-get install libboost1.74 libboost1.74-dev -y
2828

29-
- name: Export boost environment
30-
run: "export BOOST_ROOT=$BOOST_ROOT_1_72_0"
31-
3229
- name: configure
33-
run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1
30+
run: BOOST_ROOT=$BOOST_ROOT_1_72_0 cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1
3431

3532
- name: build
3633
run: cmake --build build --config Debug -j4

0 commit comments

Comments
 (0)