rm 386, add parallel

This commit is contained in:
Sina Mahmoodi 2026-04-16 21:42:52 +00:00
parent 08644c9879
commit f1165ec322

View file

@ -8,20 +8,11 @@ on:
jobs:
windows:
name: Windows ${{ matrix.arch }}
name: Windows amd64
runs-on: [self-hosted, windows, x64]
strategy:
fail-fast: false
matrix:
include:
- arch: amd64
mingw: 'C:\msys64\mingw64'
- arch: '386'
mingw: 'C:\msys64\mingw32'
env:
GETH_ARCH: ${{ matrix.arch }}
GETH_MINGW: ${{ matrix.mingw }}
GETH_CC: ${{ matrix.mingw }}\bin\gcc.exe
GETH_MINGW: 'C:\msys64\mingw64'
GETH_CC: 'C:\msys64\mingw64\bin\gcc.exe'
steps:
- uses: actions/checkout@v4
with:
@ -36,7 +27,6 @@ jobs:
- name: Show tool versions
shell: cmd
run: |
echo === arch: %GETH_ARCH% ===
go version
"%GETH_CC%" --version
@ -44,10 +34,10 @@ jobs:
shell: cmd
run: |
set PATH=%GETH_MINGW%\bin;%PATH%
go run build/ci.go install -arch %GETH_ARCH% -cc %GETH_CC%
go run build/ci.go install -arch amd64 -cc %GETH_CC%
- name: Test
shell: cmd
run: |
set PATH=%GETH_MINGW%\bin;%PATH%
go run build/ci.go test -arch %GETH_ARCH% -cc %GETH_CC% -short
go run build/ci.go test -arch amd64 -cc %GETH_CC% -short -p 8