see how long selfhosted performs in 32 bits
This commit is contained in:
parent
f5fe324c3e
commit
ed1b56bd5e
|
@ -18,7 +18,15 @@ jobs:
|
||||||
go-version: 1.23.0
|
go-version: 1.23.0
|
||||||
cache: false
|
cache: false
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: go test -short ./...
|
run: |
|
||||||
|
git submodule update --init --depth 1 --recursive
|
||||||
|
go version
|
||||||
|
go run build/ci.go lint
|
||||||
|
go run build/ci.go check_tidy
|
||||||
|
go run build/ci.go check_generate
|
||||||
|
go run build/ci.go check_baddeps
|
||||||
|
go run build/ci.go install -dlgo
|
||||||
|
go run build/ci.go test -dlgo -short
|
||||||
env:
|
env:
|
||||||
GOOS: linux
|
GOOS: linux
|
||||||
GOARCH: 386
|
GOARCH: 386
|
||||||
|
|
Loading…
Reference in New Issue