-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #255 from visualfc/go121
support Go1.21
- Loading branch information
Showing
416 changed files
with
101,685 additions
and
420 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
name: Go1.21 | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
|
||
macos: | ||
name: Test Go1.21 for macOS | ||
runs-on: macos-latest | ||
steps: | ||
|
||
- name: Set up Go 1.21 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.21.x | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
- name: Build | ||
run: go build -v . | ||
|
||
- name: Install igop | ||
run: go install -v ./cmd/igop | ||
|
||
- name: Go Test | ||
run: GOARCH=amd64 go test -race -v . | ||
|
||
- name: Test $GOROOT/test | ||
run: GOARCH=amd64 go run ./cmd/igoptest | ||
|
||
linux: | ||
name: Test Go1.21 for Linux | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Set up Go 1.21 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.21.x | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
- name: Build | ||
run: go build -v . | ||
|
||
- name: Install igop | ||
run: go install -v ./cmd/igop | ||
|
||
- name: Go Test amd64 | ||
run: GOARCH=amd64 go test -race -v . | ||
|
||
- name: Test $GOROOT/test | ||
run: GOARCH=amd64 go run ./cmd/igoptest | ||
|
||
windows: | ||
name: Test Go1.21 for Windows | ||
runs-on: windows-latest | ||
steps: | ||
|
||
- name: Set up Go 1.21 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.21.x | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
- name: Build | ||
run: go build -v . | ||
|
||
- name: Install igop | ||
run: go install -v ./cmd/igop | ||
|
||
- name: Go Test amd64 | ||
run: | | ||
set GOARCH=amd64 | ||
go test -race -v . | ||
- name: Test $GOROOT/test amd64 | ||
run: | | ||
set GOARCH=amd64 | ||
go run ./cmd/igoptest | ||
- name: Go Test 386 | ||
run: | | ||
set GOARCH=386 | ||
go test -v . | ||
- name: Go $GOROOT/test 386 | ||
run: | | ||
set GOARCH=386 | ||
go run ./cmd/igoptest |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.