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: jobs:
windows: windows:
name: Windows ${{ matrix.arch }} name: Windows amd64
runs-on: [self-hosted, windows, x64] 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: env:
GETH_ARCH: ${{ matrix.arch }} GETH_MINGW: 'C:\msys64\mingw64'
GETH_MINGW: ${{ matrix.mingw }} GETH_CC: 'C:\msys64\mingw64\bin\gcc.exe'
GETH_CC: ${{ matrix.mingw }}\bin\gcc.exe
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
@ -36,7 +27,6 @@ jobs:
- name: Show tool versions - name: Show tool versions
shell: cmd shell: cmd
run: | run: |
echo === arch: %GETH_ARCH% ===
go version go version
"%GETH_CC%" --version "%GETH_CC%" --version
@ -44,10 +34,10 @@ jobs:
shell: cmd shell: cmd
run: | run: |
set PATH=%GETH_MINGW%\bin;%PATH% 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 - name: Test
shell: cmd shell: cmd
run: | run: |
set PATH=%GETH_MINGW%\bin;%PATH% 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