Skip to content

Commit

Permalink
Move boost after pack install in cpp github action
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Jun 25, 2024
1 parent f8014ab commit 1040f3c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/runcpptest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ jobs:

- name: Prepare framework
run: |
echo "Install boost"
curl -o boost.tar.gz https://archives.boost.io/release/1.84.0/source/boost_1_84_0.tar.gz
tar -xf boost.tar.gz
cd dsppp
echo "Create missing folders"
mkdir AC6_results
Expand All @@ -63,6 +60,12 @@ jobs:
cat required_packs.txt
cpackget add -a -f required_packs.txt
- name: Install boost
run: |
echo "Install boost"
curl -o boost.tar.gz https://archives.boost.io/release/1.84.0/source/boost_1_84_0.tar.gz
tar -xf boost.tar.gz
- name: Execute
run: |
cd dsppp
Expand Down

0 comments on commit 1040f3c

Please sign in to comment.