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