-
Notifications
You must be signed in to change notification settings - Fork 66
256 lines (233 loc) · 8.25 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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
name: Go
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: 00 4 * * *
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# Cross-compilation became possible in go1.5 with the removal of C
# code from the compiler. See https://go.dev/doc/go1.5#c.
#
# Cross-compilation isn't supported in gccgo.
- arch: x64
go: '1.3'
- arch: x64
go: '1.4'
- arch: x64
go: gccgo-9
- arch: x64
go: gccgo-10
- arch: x64
go: gccgo-11
- arch: x64
go: gccgo-12
# NB: gccgo-13 and gccgo-14 are not available in the Ubuntu 22.04.
#
# TODO(https://github.com/actions/runner-images/issues/9848): Add gccgo-13 and gccgo-14
# when Ubuntu 24.04 is GA on GitHub Actions.
arch:
- armv6
- armv7
- aarch64
- s390x
- 386
- x64
go:
- '1.5'
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
- '1.11'
- '1.12'
- '1.13'
- '1.14'
- '1.15'
- '1.16'
- '1.17'
- '1.18'
- '1.19'
- '1.20'
- '1.21'
- '1.22'
exclude:
# Support for s390x was added in Go1.7. See https://go.dev/doc/go1.7#ports.
- arch: s390x
go: '1.5'
- arch: s390x
go: '1.6'
steps:
- uses: actions/checkout@v4
- name: Set up Go
if: ${{ !startsWith(matrix.go, 'gccgo-') }}
uses: actions/[email protected]
with:
go-version: ${{ matrix.go }}
- name: Set up gccgo
if: ${{ startsWith(matrix.go, 'gccgo-') }}
shell: bash
run: |
set -euxo pipefail
sudo apt update
sudo apt install -y ${{ matrix.go }}
echo ${{ matrix.go }} | sed 's/^gcc//' | xargs -I % ln -s /usr/bin/% /usr/local/bin/go
go version
- name: Configure environment
id: configure_environment
shell: bash
run: |
set -euxo pipefail
case ${{ matrix.arch }} in
armv6)
echo GOARCH=arm >> "$GITHUB_ENV"
echo GOARM=6 >> "$GITHUB_ENV"
;;
armv7)
echo GOARCH=arm >> "$GITHUB_ENV"
echo GOARM=7 >> "$GITHUB_ENV"
;;
aarch64)
echo GOARCH=arm64 >> "$GITHUB_ENV"
;;
s390x)
echo GOARCH=s390x >> "$GITHUB_ENV"
;;
386)
echo GOARCH=386 >> "$GITHUB_ENV"
;;
x64)
echo GOARCH=amd64 >> "$GITHUB_ENV"
;;
*)
echo "Unknown architecture: ${{ matrix.arch }}"
exit 1
;;
esac
version_ge() {
version=$1
printf "$version\n%s\n" ${{ matrix.go }} | sort -V | head -n1 | xargs test "$version" =
}
# Race builds are pretty much busted on Go 1.4 and below on systems with newer C
# compilers. A number of fixes were backported to go1.4-bootstrap but not any released
# version. See https://github.com/golang/go/compare/go1.4.3...release-branch.go1.4.
if ! version_ge 1.5; then
echo "RACE_BUILDS_BROKEN=1" >> "$GITHUB_OUTPUT"
fi
# Go binaries built with Go 1.8 and below are incompatible with QEMU user-level emulation.
# See https://github.com/golang/go/commit/2673f9e.
if version_ge 1.9; then
echo "QEMU_EMULATION_WORKS=1" >> "$GITHUB_OUTPUT"
fi
if version_ge 1.12; then
# Better inlining in Go 1.12. See https://go.dev/doc/go1.12#compiler.
echo "BETTER_INLINING_AVAILABLE=1" >> "$GITHUB_OUTPUT"
# Race detector support on linux/arm64 was added in go1.12. See
# https://go.dev/doc/go1.12.
echo "ARM64_RACE_SUPPORTED=1" >> "$GITHUB_OUTPUT"
fi
if version_ge 1.19; then
# Race detector support on linux/s390x was added in go1.19. See
# https://go.dev/doc/go1.19.
echo "S390X_RACE_SUPPORTED=1" >> "$GITHUB_OUTPUT"
fi
# Race detector binaries crash with:
#
# FATAL: ThreadSanitizer: unsupported VMA range
#
# See https://github.com/golang/go/issues/29948.
echo "ARM64_UNSUPPORTED_VMA_RANGE=1" >> "$GITHUB_OUTPUT"
# Race detector binaries crash with:
#
# ==17==ERROR: ThreadSanitizer failed to allocate 0x7f0000 (8323072) bytes at address 9000001a0000 (errno: 12)
#
# See https://github.com/golang/go/issues/67881.
echo "S390X_THREAD_SANITIZER_FAILED_TO_ALLOCATE=1" >> "$GITHUB_OUTPUT"
- name: Check that Get is inlined
if: |
!startsWith(matrix.go, 'gccgo-') &&
steps.configure_environment.outputs.BETTER_INLINING_AVAILABLE
shell: bash
run: |
set -euxo pipefail
go build -gcflags='-m' 2>&1 | grep 'can inline Get$' > /dev/null
- name: go build & go test -c
shell: bash
run: |
set -euxo pipefail
go build -v ./...
go test -c -o goid.test ./...
- name: go build & go test -c (race)
# Race builds aren't supported on linux/386.
#
# Race builds aren't supported in gccgo.
if: |
matrix.arch == 'x64' &&
!startsWith(matrix.go, 'gccgo-') &&
!steps.configure_environment.outputs.RACE_BUILDS_BROKEN
shell: bash
run: |
set -euxo pipefail
go build -v -race ./...
go test -c -race -o goid.race.test ./...
- name: go build & go test -c (race)
if: |
matrix.arch == 'aarch64' &&
steps.configure_environment.outputs.ARM64_RACE_SUPPORTED ||
matrix.arch == 's390x' &&
steps.configure_environment.outputs.S390X_RACE_SUPPORTED
env:
CGO_ENABLED: 1
shell: bash
run: |
set -euxo pipefail
# Non-host *.syso files are missing from the Go toolchains provided
# by setup-go. See https://github.com/actions/setup-go/issues/181.
curl --location --output "$(go env GOROOT)"/src/runtime/race/race_linux_"$GOARCH".syso \
https://github.com/golang/go/raw/release-branch.go${{ matrix.go }}/src/runtime/race/race_linux_"$GOARCH".syso
sudo apt update
sudo apt install -y gcc-${{ matrix.arch }}-linux-gnu
export CC=${{ matrix.arch }}-linux-gnu-gcc
export CC_FOR_TARGET=gcc-${{ matrix.arch }}-linux-gnu
go build -v -race ./...
go test -c -race -o goid.race.test ./...
- run: rm goid.race.test
if: |
matrix.arch == 'aarch64' &&
steps.configure_environment.outputs.ARM64_RACE_SUPPORTED &&
steps.configure_environment.outputs.ARM64_UNSUPPORTED_VMA_RANGE ||
matrix.arch == 's390x' &&
steps.configure_environment.outputs.S390X_RACE_SUPPORTED &&
steps.configure_environment.outputs.S390X_THREAD_SANITIZER_FAILED_TO_ALLOCATE
- name: Run tests
if: ${{ matrix.arch == '386' || matrix.arch == 'x64' }}
shell: bash
run: |
set -euxo pipefail
find . -name '*.test' -type f -executable -print0 | \
xargs -t -0 -I '{}' sh -c '{} -test.v && {} -test.bench=. -test.benchmem -test.v'
- name: Run tests
if: |
matrix.arch != '386' &&
matrix.arch != 'x64' &&
steps.configure_environment.outputs.QEMU_EMULATION_WORKS
uses: uraimo/run-on-arch-action@v2
with:
arch: ${{ matrix.arch }}
distro: bookworm
dockerRunArgs: --mount type=bind,source="$(pwd)",target=/checkout,readonly
shell: /bin/bash
run: |
set -euxo pipefail
find /checkout -name '*.test' -type f -executable -print0 | \
xargs -t -0 -I '{}' sh -c '{} -test.v && {} -test.bench=. -test.benchmem -test.v'