File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -215,12 +215,12 @@ jobs:
215
215
echo "::set-output name=id::$(cat container_id)"
216
216
- name : Install Alpine system dependencies
217
217
if : ${{ matrix.libc == 'musl' }}
218
- run : docker exec -w "${PWD}" ${{ steps.container.outputs.id }} apk add --no-cache build-base linux-headers bash python3 git curl tar cmake clang
218
+ run : docker exec -w "${PWD}" ${{ steps.container.outputs.id }} apk add --no-cache build-base linux-headers bash python3 git curl tar cmake clang ccache
219
219
- name : Install Debian system dependencies
220
220
if : ${{ matrix.libc == 'gnu' }}
221
221
run : |
222
222
docker exec -w "${PWD}" ${{ steps.container.outputs.id }} apt-get update
223
- docker exec -w "${PWD}" ${{ steps.container.outputs.id }} apt-get install -y cmake clang
223
+ docker exec -w "${PWD}" ${{ steps.container.outputs.id }} apt-get install -y cmake clang ccache
224
224
- name : Install Debian cross-compiler
225
225
if : ${{ matrix.libc == 'gnu' && matrix.platform != 'amd64' }}
226
226
run : |
You can’t perform that action at this time.
0 commit comments