-
-
Notifications
You must be signed in to change notification settings - Fork 302
173 lines (164 loc) · 4.93 KB
/
ci.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
name: CI
on:
push:
pull_request:
defaults:
run:
# PowerShell's behavior for -flag=value is undesirable, so run all commands with bash.
shell: bash
jobs:
test:
# The default name will include the "go-version-is" parameter below, which
# is derived from go-version and redundant, so we supply an explicit
# templated name.
name: Run tests (${{ matrix.os }}, ${{ matrix.go-version }})
strategy:
matrix:
os: [ubuntu, macos, windows]
go-version: [1.23.x]
go-version-is: [new]
include:
# Test old supported Go version
- os: ubuntu
go-version: 1.22.x
go-version-is: [old]
env:
ELVISH_TEST_TIME_SCALE: 20
runs-on: ${{ matrix.os }}-latest
steps:
# autocrlf is problematic for fuzz testdata.
- name: Turn off autocrlf
if: matrix.os == 'windows'
run: git config --global core.autocrlf false
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test with race detection
run: |
go test -race ./...
cd website; go test -race ./...
- name: Generate unit test coverage
if: matrix.go-version-is == 'new'
run: go test -coverprofile=cover-unit.txt -coverpkg=./pkg/... ./pkg/...
- name: Generate E2E test coverage
if: matrix.go-version-is == 'new'
run: |
mkdir cover-e2e
GOCOVERDIR=$PWD/cover-e2e go test -count 1 ./e2e
go tool covdata textfmt -i cover-e2e -o cover-e2e.txt
- name: Save test coverage
if: matrix.go-version-is == 'new'
uses: actions/upload-artifact@v4
with:
name: cover-${{ matrix.os == 'ubuntu' && 'linux' || matrix.os }}
path: cover-*.txt
emulated_tests:
name: Run tests (emulated ${{ matrix.go-arch }})
strategy:
matrix:
go-arch: [riscv64, s390x]
env:
ELVISH_TEST_TIME_SCALE: 20
GOARCH: ${{ matrix.go-arch }}
runs-on: ubuntu-latest
steps:
- name: Set up emulator
run: |
sudo apt update
sudo apt install binfmt-support qemu-user-static
update-binfmts --display
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
- name: Test with emulator
run: |
go test ./...
cd website; go test ./...
# The purpose of running benchmarks in GitHub Actions is primarily to ensure
# that the benchmark code runs and doesn't crash. GitHub Action runners don't
# have a stable enough environment to produce reliable benchmark numbers.
benchmark:
name: Run benchmarks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
- name: Run benchmarks
run: go test -bench=. -run='^$' ./...
upload-coverage:
name: Upload test coverage
strategy:
matrix:
ostype: [linux, macos, windows]
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download test coverage
uses: actions/download-artifact@v4
with:
name: cover-${{ matrix.ostype }}
- name: Upload unit test coverage to codecov
uses: codecov/codecov-action@v4
with:
files: ./cover-unit.txt
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.ostype }},unit
- name: Upload E2E test coverage to codecov
uses: codecov/codecov-action@v4
with:
files: ./cover-e2e.txt
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.ostype }},e2e
checks:
name: Run checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install tools
run: |
go install golang.org/x/tools/cmd/stringer@latest
go install golang.org/x/tools/cmd/goimports@latest
# Keep the versions of staticcheck and codespell in sync with docs/workflows.md
go install honnef.co/go/tools/cmd/[email protected]
pip install --user codespell==2.3.0
- name: Run checks
run: make all-checks
check-rellinks:
name: Check relative links in website
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Python dependency
run: pip3 install beautifulsoup4
- name: Check relative links
run: make -C website check-rellinks