From c87d5b223dcbcc3c5bfc316c183571242246b1c2 Mon Sep 17 00:00:00 2001 From: mahf708 Date: Mon, 27 Jan 2025 15:37:04 -0500 Subject: [PATCH 1/3] run on arm --- .github/workflows/standalone-ghci.yaml.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/standalone-ghci.yaml.yaml b/.github/workflows/standalone-ghci.yaml.yaml index 03fc4f8..fe16052 100644 --- a/.github/workflows/standalone-ghci.yaml.yaml +++ b/.github/workflows/standalone-ghci.yaml.yaml @@ -1,4 +1,4 @@ -name: ghci +name: ghci-standalone on: pull_request: @@ -26,11 +26,14 @@ env: jobs: ocis: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} permissions: contents: read packages: write id-token: write + strategy: + matrix: + os: [ubuntu-22.04, ubuntu-22.04-arm] steps: - From cc7e81e3256422da82573535004b85d2bd1af462 Mon Sep 17 00:00:00 2001 From: mahf708 Date: Mon, 27 Jan 2025 15:39:23 -0500 Subject: [PATCH 2/3] rename workflow file --- .../workflows/{standalone-ghci.yaml.yaml => standalone-ghci.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{standalone-ghci.yaml.yaml => standalone-ghci.yaml} (100%) diff --git a/.github/workflows/standalone-ghci.yaml.yaml b/.github/workflows/standalone-ghci.yaml similarity index 100% rename from .github/workflows/standalone-ghci.yaml.yaml rename to .github/workflows/standalone-ghci.yaml From 8196e682e03b205cb543f7507173511fc60520ee Mon Sep 17 00:00:00 2001 From: mahf708 Date: Mon, 27 Jan 2025 16:20:53 -0500 Subject: [PATCH 3/3] try aarch only --- .github/workflows/standalone-ghci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/standalone-ghci.yaml b/.github/workflows/standalone-ghci.yaml index fe16052..c7ed809 100644 --- a/.github/workflows/standalone-ghci.yaml +++ b/.github/workflows/standalone-ghci.yaml @@ -33,7 +33,7 @@ jobs: id-token: write strategy: matrix: - os: [ubuntu-22.04, ubuntu-22.04-arm] + os: [ubuntu-22.04-arm] steps: -