From 4bbc58d62db37e64a7f2d4b8149285f75a47eaa6 Mon Sep 17 00:00:00 2001 From: Li Jie Date: Tue, 8 Apr 2025 11:36:46 +0800 Subject: [PATCH] test cross compile on macos --- .github/workflows/llgo.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/llgo.yml b/.github/workflows/llgo.yml index de57fe9b..c49ea13d 100644 --- a/.github/workflows/llgo.yml +++ b/.github/workflows/llgo.yml @@ -200,13 +200,17 @@ jobs: cross-compile: continue-on-error: true - runs-on: macos-latest + strategy: + matrix: + os: [macos-latest] + llvm: [19] + runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v4 - name: Install dependencies uses: ./.github/actions/setup-deps with: - llvm-version: 19 + llvm-version: ${{matrix.llvm}} - name: Set up Go for building llgo uses: ./.github/actions/setup-go