From 1c8c129b9d2ff873e0fb500a8823a31ee40898bb Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Fri, 2 Feb 2024 08:40:06 +0700 Subject: [PATCH] workaround --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e087392f68b..8dfde95107a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,10 +37,12 @@ jobs: image: ghcr.io/rescript-lang/rescript-ci-build:v1.2.0 steps: - # See https://github.com/actions/runner/issues/801#issuecomment-1374967227. - name: Workaround for Github actions runner on Alpine arm64 if: runner.arch == 'ARM64' - run: sed -i "s:ID=alpine:ID=NotpineForGHA:" /etc/os-release + run: | + wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub + wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r1/glibc-2.35-r1.apk + apk add glibc-2.35-r1.apk - name: Checkout uses: actions/checkout@v4