From c74409b9a5b143178f1877cd536c58f46c635146 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Thu, 1 Feb 2024 16:02:34 +0800 Subject: [PATCH] Remove cleanup hack on ARM64 Linux --- .github/workflows/release.yaml | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1c821b3..5bb32e7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -94,21 +94,15 @@ jobs: fail-fast: true matrix: include: - - os: [self-hosted, Linux, ARM64] + - os: [self-hosted, Linux, ARM64, maerwald] ARTIFACT: "armv7-linux-ghcup" GHC_VER: 9.2.8 ARCH: ARM - - os: [self-hosted, Linux, ARM64] + - os: [self-hosted, Linux, ARM64, maerwald] ARTIFACT: "aarch64-linux-ghcup" GHC_VER: 9.4.8 ARCH: ARM64 steps: - - uses: docker://arm64v8/debian:10 - name: Cleanup (aarch64 linux) - continue-on-error: true - with: - args: "find . -mindepth 1 -maxdepth 1 -exec rm -rf -- {} +" - - name: git config run: | git config --global --get-all safe.directory | grep '^\*$' || git config --global --add safe.directory "*" @@ -371,24 +365,18 @@ jobs: strategy: matrix: include: - - os: [self-hosted, Linux, ARM64] + - os: [self-hosted, Linux, ARM64, maerwald] ARTIFACT: "armv7-linux-ghcup" GHC_VER: 9.2.8 ARCH: ARM DISTRO: Ubuntu - - os: [self-hosted, Linux, ARM64] + - os: [self-hosted, Linux, ARM64, maerwald] ARTIFACT: "aarch64-linux-ghcup" GHC_VER: 9.4.8 ARCH: ARM64 DISTRO: Ubuntu steps: - - uses: docker://arm64v8/debian:10 - name: Cleanup (aarch64 linux) - continue-on-error: true - with: - args: "find . -mindepth 1 -maxdepth 1 -exec rm -rf -- {} +" - - name: Checkout code uses: actions/checkout@v3 with: