Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kduret committed Oct 10, 2023
1 parent 92d43ef commit 17999ea
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/package-collect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ jobs:
- name: Run sccache-cache
uses: mozilla-actions/[email protected]

- name: Restore cache sccache
uses: actions/cache/restore@v3
with:
path: /github/home/.cache/sccache
key: sccache-${{ matrix.distrib }}-${{ matrix.arch }}

- name: Compile sources
run: |
set -x
Expand All @@ -92,7 +98,7 @@ jobs:
${SCCACHE_PATH} --show-stats
ls ~/.cache/sccache
#ls ~/.cache/sccache
sudo pip3 install conan==1.57.0 --prefix=/usr --upgrade
Expand Down Expand Up @@ -131,6 +137,12 @@ jobs:
#ccache -s
shell: bash

- name: Cache sccache
uses: actions/cache/save@v3
with:
path: /github/home/.cache/sccache
key: sccache-${{ matrix.distrib }}-${{ matrix.arch }}

- name: Generate debug files
run: |
for file in $(find ./{lib/*.so,bin} -type f); do
Expand Down

0 comments on commit 17999ea

Please sign in to comment.