From 9636feab744e572be7e9c4725c393984fa11593f Mon Sep 17 00:00:00 2001 From: xishang0128 Date: Sat, 24 Feb 2024 03:51:57 +0800 Subject: [PATCH] test --- .github/workflows/build.yml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 28ecfe2d5b..9a45950c59 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,18 +20,23 @@ jobs: strategy: matrix: jobs: - - { goos: darwin, goarch: arm64, goamd64: v1, output: arm64 } - - { goos: darwin, goarch: amd64, goamd64: v1, output: amd64 } + - { goos: darwin, goarch: arm64, output: arm64 } + - { goos: darwin, goarch: amd64, output: amd64 } - - { goos: linux, goarch: '386', goamd64: v1, output: '386' } - - { goos: linux, goarch: amd64, goamd64: v1, output: x86_64 } + - { goos: linux, goarch: '386', output: '386' } + - { goos: linux, goarch: amd64, output: x86_64 } - { goos: linux, goarch: amd64, goamd64: v3, output: x86_64_v3 } - - { goos: linux, goarch: arm64, goamd64: v1, output: arm64 } + - { goos: linux, goarch: arm64, output: arm64 } - - { goos: windows, goarch: '386', goamd64: v1, output: '386' } - - { goos: windows, goarch: arm64, goamd64: v1, output: arm64 } - - { goos: windows, goarch: amd64, goamd64: v1, output: x86_64 } + - { goos: windows, goarch: '386', output: '386' } + - { goos: windows, goarch: amd64, output: x86_64 } - { goos: windows, goarch: amd64, goamd64: v3, output: x86_64_v3 } + - { goos: windows, goarch: arm64, output: arm64 } + + - { goos: freebsd, goarch: '386', goamd64: v3, output: '386' } + - { goos: freebsd, goarch: amd64, goamd64: v3, output: x86_64 } + - { goos: freebsd, goarch: amd64, goamd64: v3, output: x86_64_v3 } + - { goos: freebsd, goarch: arm64, output: arm64 } steps: - uses: actions/checkout@v4