-
Notifications
You must be signed in to change notification settings - Fork 336
43 lines (33 loc) · 1.13 KB
/
compatibility_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Compatibility Test Linux-X64|ARM
on: pull_request
jobs:
build:
strategy:
matrix:
go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x]
os: [arm, X64]
runs-on: ${{ matrix.os }}
steps:
- name: Clear repository
run: sudo rm -fr $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: main
run: go test -race -v -gcflags="all=-l" github.com/bytedance/sonic
- name: decoder
run: go test -race -v -gcflags="all=-l" github.com/bytedance/sonic/decoder
- name: encoder
run: go test -race -v -gcflags="all=-l" github.com/bytedance/sonic/encoder
- name: ast
run: go test -race -v -gcflags="all=-l" github.com/bytedance/sonic/ast
- name: qemu
run: sh scripts/qemu.sh