Skip to content

Commit

Permalink
ci: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
radhermit committed Aug 3, 2024
1 parent eefec4f commit 10678f3
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ jobs:
search_artifacts: true
name: pkgcraft-c-${{ runner.os }}

- name: Unpack library and override build variables
run: |
pwd
ls -alh
tar -Jxf pkgcraft-c.tar.xz -C "${pkgcraft_dir}"
echo "PKG_CONFIG_PATH=${pkgcraft_dir}" >> $GITHUB_ENV
echo "LD_LIBRARY_PATH=${pkgcraft_dir}" >> $GITHUB_ENV
echo "DYLD_LIBRARY_PATH=${pkgcraft_dir}" >> $GITHUB_ENV
- name: Checkout code
uses: actions/checkout@v4

Expand All @@ -56,13 +65,6 @@ jobs:
- name: Install dependencies
run: pip install tox

- name: Unpack library and override build variables
run: |
tar -Jxf pkgcraft-c.tar.xz -C "${pkgcraft_dir}"
echo "PKG_CONFIG_PATH=${pkgcraft_dir}" >> $GITHUB_ENV
echo "LD_LIBRARY_PATH=${pkgcraft_dir}" >> $GITHUB_ENV
echo "DYLD_LIBRARY_PATH=${pkgcraft_dir}" >> $GITHUB_ENV
- name: Build documentation
run: |
tox -e doc
Expand Down

0 comments on commit 10678f3

Please sign in to comment.