Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
fdr400 committed Jan 6, 2025
1 parent 6c49d6e commit c1487ba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,16 @@ jobs:
redis \
rabbitmq-server \
- name: Setup ccache
- name: Setup caches
shell: alpine.sh --root {0}
run: |
echo "Cached CPM packages:"
ls -lha ${{env.CPM_SOURCE_CACHE}}
for d in $(ls ${{env.CPM_SOURCE_CACHE}})
du -h -d 1 ${{env.CPM_SOURCE_CACHE}}
for f in $(find ${{env.CPM_SOURCE_CACHE}} -name "cmake.lock");
do
git config --global --add safe.directory ${{env.CPM_SOURCE_CACHE}}/$d
repo=$(ls -d $(dirname $f)/*/);
echo "Repository: $repo";
git config --global --add safe.directory $repo;
done
ccache -M 2.0GB
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
path: |
${{env.CCACHE_DIR}}
${{env.CPM_SOURCE_CACHE}}
key: 'macos-cache-dir ${{github.ref}} run-${{github.run_number}}'
key: 'macos-cache-dir ${{github.ref}}'
restore-keys: |
macos-cache-dir ${{github.ref}} run-
macos-cache-dir ${{github.ref}}
macos-cache-dir
- name: Install brew packages
Expand Down

0 comments on commit c1487ba

Please sign in to comment.