mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
rm 386, add parallel
This commit is contained in:
parent
08644c9879
commit
f1165ec322
1 changed files with 5 additions and 15 deletions
20
.github/workflows/windows-smoke.yml
vendored
20
.github/workflows/windows-smoke.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue