-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (75 loc) · 2.11 KB
/
go.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Build, Test and Benchmark
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
check-latest: true
- name: Build
run: go build -v -gcflags="-m" ./...
- name: Test
run: go test -v ./...
Benchmark:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
go_version:
- "stable"
- "oldstable"
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v3
id: cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-${{ matrix.go_version }}-${{ hashFiles('.github/workflows/go.yml') }}${{ hashFiles('**/go.sum') }}
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '${{ matrix.go_version }}'
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Set up Rust
if: steps.cache.outputs.cache-hit != 'true'
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Set up Oha
if: steps.cache.outputs.cache-hit != 'true'
run: |
cargo install --force oha
- name: Run Benchmark
env:
IMGUR_CLIENT_ID: ${{ secrets.IMGUR_CLIENT_ID }}
run: |
go run ./tests > benchmark.md
- uses: actions/upload-artifact@v2
with:
name: benchmark_pprof_output_${{ runner.os }}-go${{ matrix.go_version }}
path: testOutput
- id: make-benchmark-report
run: |
go run ./tests/urlescape benchmark.md
- name: commit-comment
uses: peter-evans/commit-comment@v1
with:
body: ${{ steps.make-benchmark-report.outputs.body }}