Skip to content

Commit

Permalink
Update on_pull_request.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
extio1 authored May 28, 2024
1 parent c09c968 commit 3a396fd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ jobs:
- name: Download dependencies
run: |
wget https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz
tar -xzf boost_1_80_0.tar.gz
- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: dependencies-artifact
path: boost_1_80_0
path: boost_1_80_0.tar.gz

build:
needs: [download-dependencies]
Expand All @@ -35,6 +34,7 @@ jobs:

- name: Install Boost
run: |
tar -xzf boost_1_80_0.tar.gz
cd boost_1_80_0
./bootstrap.sh --with-libraries=serialization
sudo ./b2 install
Expand Down Expand Up @@ -68,6 +68,7 @@ jobs:

- name: Install Boost
run: |
tar -xzf boost_1_80_0.tar.gz
cd boost_1_80_0
./bootstrap.sh --with-libraries=serialization
sudo ./b2 install
Expand Down

0 comments on commit 3a396fd

Please sign in to comment.