Skip to content

Commit

Permalink
test7
Browse files Browse the repository at this point in the history
  • Loading branch information
BUYT-1 committed Aug 15, 2024
1 parent 5dfacad commit 75a339c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/composite-actions/download-libraries/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,21 @@ runs:
path: ${{github.workspace}}/lib/boost_1_81_0
key: ${{ runner.os }}-boost-81

- name: Unpack Boost
- name: Download and unpack Boost
run: |
cd lib
wget -O boost_1_81_0.tar.gz https://sourceforge.net/projects/boost/files/boost/1.81.0/boost_1_81_0.tar.gz/download
tar xzvf boost_1_81_0.tar.gz
# don't cache build files
cp -r boost_1_81_0 boost
shell: bash
if: steps.cache-boost.outputs.cache-hit != 'true'

- name: Copy boost
run: |
# Avoid caching build files
cd lib
cp -r boost_1_81_0 boost
shell: bash

- name: Install Boost
run: |
cd lib/boost
Expand Down

0 comments on commit 75a339c

Please sign in to comment.