From 9a0e75b3a9b00b3144540ec760358c3591d61458 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Sat, 7 Sep 2024 20:37:13 -0700 Subject: [PATCH] ci: test on alpine --- .github/workflows/ci.yaml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 008c8e3..53e2f1f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,11 +36,19 @@ jobs: bootstrap: runs-on: ${{ matrix.os }}-latest + container: ${{ matrix.container }} strategy: fail-fast: false matrix: - os: [macos, ubuntu] + # os: [macos, ubuntu] + include: + - os: macos + - os: ubuntu + - os: ubuntu + container: alpine steps: - - run: curl -Lo /usr/local/bin/yadm https://github.com/TheLocehiliosan/yadm/raw/master/yadm - - run: chmod a+x /usr/local/bin/yadm + # - run: curl -Lo /usr/local/bin/yadm https://github.com/TheLocehiliosan/yadm/raw/master/yadm + # - run: chmod a+x /usr/local/bin/yadm + - run: apk add bash curl git + if: matrix.container == 'alpine' - run: curl -fsSL https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/bootstrap | HOME=$PWD/tmp bash