crtime: add monotonic time #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linux: | |
name: go-linux | |
strategy: | |
matrix: | |
go: ["1.22", "1.23"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "${{ matrix.go }}" | |
- run: go test -tags crlib_invariants ./... | |
- run: go test ./... | |
- run: go vet ./... | |
linux-32bit: | |
name: go-linux-32bit | |
strategy: | |
matrix: | |
go: ["1.22"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "${{ matrix.go }}" | |
- run: go test -tags crlib_invariants ./... | |
- run: go test ./... | |
darwin: | |
name: go-macos | |
strategy: | |
matrix: | |
go: ["1.22"] | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "${{ matrix.go }}" | |
- run: go test -tags crlib_invariants ./... | |
- run: go test ./... | |
linux-stress: | |
name: go-linux-stress | |
strategy: | |
matrix: | |
go: ["1.22"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "${{ matrix.go }}" | |
- run: go install github.com/cockroachdb/stress@latest | |
- run: go test -tags crlib_invariants ./... -exec 'stress -p 2 -maxruns 1000' -v | |
- run: go test ./... -exec 'stress -p 2 -maxruns 1000' -v | |
linux-stress-race: | |
name: go-linux-stress-race | |
strategy: | |
matrix: | |
go: ["1.22"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "${{ matrix.go }}" | |
- run: go install github.com/cockroachdb/stress@latest | |
- run: go test -tags crlib_invariants ./... -race -exec 'stress -p 1 -maxruns 100' -v | |
- run: go test ./... -race -exec 'stress -p 1 -maxruns 100' -v |