[optimize] skip_container_fast function unfold #209
Workflow file for this run
This file contains hidden or 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: Unit Test | |
on: pull_request | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go-version: [1.18.x, 1.21.x, 1.25.x] | |
runner_arch: [ubuntu-latest] | |
runs-on: ${{ matrix.runner_arch }} | |
steps: | |
- name: Clear repository | |
run: rm -fr $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: true | |
- name: Cache Go modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/go/pkg/mod | |
${{ github.workspace }}/go.sum | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
- name: Unit Test JIT | |
run: | | |
GOMAXPROCS=4 go test -race -covermode=atomic -coverprofile=coverage.txt ./... | |
- name: Unit Test VM | |
run: | | |
SONIC_USE_OPTDEC=1 SONIC_USE_FASTMAP=1 SONIC_ENCODER_USE_VM=1 GOMAXPROCS=4 go test -race -covermode=atomic -coverprofile=coverage.txt ./... | |
- name: Loader Test | |
run: | | |
cd ./loader | |
go test -race ./... | |
- name: Data Race | |
run: | | |
./scripts/test_race.sh | |
- name: Issue Test | |
run: GOMAXPROCS=4 go test -race ./issue_test | |
- name: PCSP Test | |
env: | |
GOVERSION: ${{ matrix.go-version }} | |
run: python3 ./scripts/test_pcsp.py | |
- name: Generic Test JIT | |
run: GOMAXPROCS=4 go test -race ./generic_test | |
- name: Generic Test VM | |
run: GOMAXPROCS=4 SONIC_USE_OPTDEC=1 SONIC_USE_FASTMAP=1 SONIC_ENCODER_USE_VM=1 go test -v -race ./generic_test | |
- name: Codecov | |
run: bash <(curl -s https://codecov.io/bash) |