ci: use llgo test instead

ci: use llgo test instead
This commit is contained in:
Haolan
2025-11-14 11:07:15 +08:00
parent af27d0475d
commit 7f1e07755a
6 changed files with 12 additions and 31 deletions

View File

@@ -52,11 +52,6 @@ jobs:
if: ${{!startsWith(matrix.os, 'macos')}}
run: go test ./...
- name: Test Baremetal GC
if: ${{!startsWith(matrix.os, 'macos')}}
working-directory: runtime/internal/runtime/tinygogc
run: go test -tags testGC .
- name: Test with coverage
if: startsWith(matrix.os, 'macos')
run: go test -coverprofile="coverage.txt" -covermode=atomic ./...

View File

@@ -61,7 +61,7 @@ jobs:
if ${{ startsWith(matrix.os, 'macos') }}; then
DEMO_PKG="cargs_darwin_arm64.zip"
else
DEMO_PKG="cargs_linux_amd64.zip"
DEMO_PKG="cargs_linux_amd64.zip"
fi
mkdir -p ./_demo/c/cargs/libs
@@ -186,11 +186,15 @@ jobs:
uses: actions/setup-go@v6
with:
go-version: ${{matrix.go}}
- name: Test Baremetal GC
if: ${{!startsWith(matrix.os, 'macos')}}
working-directory: runtime/internal/runtime/tinygogc
run: llgo test -tags testGC .
- name: run llgo test
run: |
llgo test ./...
hello:
continue-on-error: true
timeout-minutes: 30