Skip to content

Commit

Permalink
Install boost into different directory in pythonpackage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph McKinsey committed Oct 11, 2024
1 parent 6cb5fb9 commit 7d8ec2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ jobs:

- name: Install boost
run:
mkdir boost &&
pushd boost &&
mkdir /boost &&
pushd /boost &&
wget --no-check-certificate 'https://sourceforge.net/projects/boost/files/boost/1.76.0/boost_1_76_0.tar.bz2' &&
tar xf boost_1_76_0.tar.bz2 &&
popd
- name: Build sdist
run: BOOST_ROOT="$(pwd)/boost" pipx run build --sdist
run: BOOST_ROOT="/boost" pipx run build --sdist
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 7d8ec2f

Please sign in to comment.