From 2c4f6063a665f695e7f6b40212babece5c2dd0ed Mon Sep 17 00:00:00 2001 From: xushiwei Date: Wed, 12 Jun 2024 22:56:36 +0800 Subject: [PATCH] disable LLGO tests on ubuntu --- .github/workflows/go.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 89563e2aa..7f8ad77c7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,7 @@ jobs: test: strategy: matrix: - os: [macos-latest, macos-12, macos-13, ubuntu-latest] + os: [macos-latest, ubuntu-latest] llvm: [17] runs-on: ${{ matrix.os }} steps: @@ -63,6 +63,7 @@ jobs: run: go install ./... - name: LLGO tests + if: matrix.os != 'ubuntu-latest' run: | echo "Test result on ${{ matrix.os }} with LLVM ${{ matrix.llvm }}" > result.md LLGOROOT=$PWD bash .github/workflows/test_llgo.sh