Skip to content

Commit

Permalink
fix: go1.15 CANNOT support gcWriteBarrier due to linkname bug (#134)
Browse files Browse the repository at this point in the history
* fix: go1.15 CANNOT add gcWriteBarrier due to linkname bug

* add go1.15 push-check

Co-authored-by: duanyi.aster <duanyi.aster@bytedance.com>
  • Loading branch information
AsterDY and AsterDY authored Nov 18, 2021
1 parent 43e4a00 commit 5b38f56
Show file tree
Hide file tree
Showing 10 changed files with 3,417 additions and 29 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/push-check-go115.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Push Check Go1.15

on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15

- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Unit Test
run: go test -v -race -covermode=atomic -coverprofile=coverage.out ./...
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Push Check
name: Push Check Go1.16

on: push

Expand Down
Loading

0 comments on commit 5b38f56

Please sign in to comment.