mirror of
https://github.com/ii64/sonic.git
synced 2026-06-21 00:46:43 +08:00
30 lines
No EOL
682 B
YAML
30 lines
No EOL
682 B
YAML
name: Benchmark Linux-X64
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: [self-hosted, X64]
|
|
steps:
|
|
- name: Clear repository
|
|
run: sudo rm -fr $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Check Branch
|
|
run: ./check_branch_name.sh ${{ github.head_ref }}
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17.1
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Benchmark sonic
|
|
run: sh bench.sh |