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 470b47c commit da33342
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
install-dependencies:
runs-on: ubuntu-latest
steps:
- run: mkdir install-artifacts
- name: Install dependencies
run: |
wget https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz
Expand All @@ -20,19 +21,18 @@ jobs:
- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: install-artifacts
path: install
path: install-artifacts

build:
needs: [install-dependencies]
runs-on: ubuntu-latest

steps:
- run: ls
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: install-artifacts
path: install
path: install-artifacts

- name: Build project
run: |
Expand All @@ -58,8 +58,7 @@ jobs:
path: build
- uses: actions/download-artifact@v4
with:
name: install-artifacts
path: install
path: install-artifacts

- name: Add lanch permissions for text executables
run: |
Expand Down

0 comments on commit da33342

Please sign in to comment.