File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
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
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
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
223
+ docker exec -w "${PWD}" ${{ steps.container.outputs.id }} apt-get install -y cmake clang
224
224
- name : Install Debian cross-compiler
225
225
if : ${{ matrix.libc == 'gnu' && matrix.platform != 'amd64' }}
226
226
run : |
Original file line number Diff line number Diff line change 1
1
ARG RUBY_VERSION=2.7
2
2
FROM ruby:${RUBY_VERSION}
3
3
4
- RUN test ! -f /etc/alpine-release || apk add --no-cache build-base bash python3 git curl tar ccache
5
- RUN test -f /etc/alpine-release || (apt-get update && apt-get install -y ccache)
4
+ RUN test ! -f /etc/alpine-release || apk add --no-cache build-base bash python3 git curl tar ccache clang
5
+ RUN test -f /etc/alpine-release || (apt-get update && apt-get install -y ccache clang )
6
6
ENV CCACHE_DIR=/ccache
7
7
8
8
RUN gem update --system 3.3.26 && gem install bundler -v '~> 2.3.26'
You can’t perform that action at this time.
0 commit comments