mirror of
https://github.com/VSCodium/vscode-linux-build-agent.git
synced 2025-12-10 03:54:09 -06:00
fix: aloine for arm64
This commit is contained in:
parent
6a0484dd37
commit
b7ca2ee939
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -23,7 +23,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: docker/setup-qemu-action@v2
|
||||
if: matrix.arch == 'centos7-devtoolset8-arm64' || matrix.arch == 'centos7-devtoolset8-ppc64le'
|
||||
if: matrix.arch == 'centos7-devtoolset8-arm64' || matrix.arch == 'centos7-devtoolset8-ppc64le' || matrix.arch == 'alpine-arm64'
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
@ -2,7 +2,9 @@ ARG REPO=alpine
|
||||
ARG TAG=3.16
|
||||
FROM arm64v8/${REPO}:${TAG}
|
||||
|
||||
RUN apk add nodejs npm g++ python3 make git bash curl perl pkgconfig libsecret-dev krb5-dev jq
|
||||
RUN apk add nodejs npm g++ python3 make git bash curl perl pkgconfig libsecret-dev krb5-dev \
|
||||
# VSCodium
|
||||
jq
|
||||
RUN npm install -g yarn
|
||||
|
||||
RUN mkdir -p /root/vscode
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user