From 9c74d8fc61b93fa3c8d70f3fedc8a1cf05454edd Mon Sep 17 00:00:00 2001 From: Yacin Nadji Date: Tue, 22 Apr 2025 11:22:09 -0400 Subject: [PATCH 1/2] does matrix build "Just Work?" --- .github/workflows/makefile.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 4ae5d07..db1e522 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -9,7 +9,10 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] env: LISP: sbcl-bin @@ -48,6 +51,6 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: cleek + name: cleek-${{ matrix.os }} path: bin/cleek overwrite: true From 08811685e27738d2d41bec4a396e6baa118cdae9 Mon Sep 17 00:00:00 2001 From: Yacin Nadji Date: Tue, 22 Apr 2025 11:26:06 -0400 Subject: [PATCH 2/2] remove windows --- .github/workflows/makefile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index db1e522..6eb2f35 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -12,7 +12,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest] env: LISP: sbcl-bin