Skip to content

Commit

Permalink
change ci
Browse files Browse the repository at this point in the history
  • Loading branch information
AsterDY committed Aug 2, 2023
1 parent 6e35082 commit 47823a7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compatibility_test-windows.yml
@@ -1,4 +1,4 @@
name: Push Check Windows-X64
name: Compatibility Test Windows-X64

on: pull_request

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatibility_test.yml
@@ -1,4 +1,4 @@
name: Push Check Linux-ARM
name: Compatibility Test Linux-X64|ARM

on: pull_request

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzzing-linux-x64.yml
@@ -1,4 +1,4 @@
name: Fuzz Linux-X64
name: Fuzz Test Linux-X64

on: pull_request

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generic_test.yml
@@ -1,4 +1,4 @@
name: Push Check Go1.18-Linux-X64
name: Generic Test Go1.18-Linux-X64

on: pull_request

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go_latest_test.yml
@@ -1,4 +1,4 @@
name: Push Check Go-Latest-Linux-X64
name: Unit Test Go-Latest-Linux-X64

on: push

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_test-linux-x64.yml
@@ -1,4 +1,4 @@
name: Push Check Linux-X64
name: Unit Test Linux-X64

on: push

Expand Down
7 changes: 5 additions & 2 deletions scripts/go_latest.sh
Expand Up @@ -6,12 +6,15 @@ git clone https://github.com/golang/go.git $TAG
cd $TAG/src
git checkout -b build/$TAG $TAG

./all.bash
sh ./all.bash

cd ..
export GOROOT=$PWD
export PATH=$GOROOT/bin:$PATH
go version

cd ..
GOMAXPROCS=4 go test -v -race ./...
GOMAXPROCS=4 go test -v -race .
GOMAXPROCS=4 go test -v -race github.com/bytedance/sonic/ast
GOMAXPROCS=4 go test -v -race github.com/bytedance/sonic/internal/encoder
GOMAXPROCS=4 go test -v -race github.com/bytedance/sonic/internal/decoder

0 comments on commit 47823a7

Please sign in to comment.