mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-08 16:23:58 +01:00
* make boringcrypto: add checklinkname flag for go1.23 Starting with go1.23, we need to set -checklinkname=0 when building for boringcrypto because we need to use go:linkname to access `newGCMTLS`. Note that this does break builds when using a go version less than go1.23.0. We can probably assume that someone using this Makefile and manually building is using the latest release of Go though. See: - https://go.dev/doc/go1.23#linker * build with go1.23 This doesn't change our go.mod, which still only requires go1.22 as a minimum, only changes our builds to use go1.23 so we have the latest improvements. * fix `make test-boringcrypto` as well * also fix boringcrypto e2e test
35 lines
674 B
YAML
35 lines
674 B
YAML
name: gofmt
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/gofmt.yml'
|
|
- '**.go'
|
|
jobs:
|
|
|
|
gofmt:
|
|
name: Run gofmt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.23'
|
|
check-latest: true
|
|
|
|
- name: Install goimports
|
|
run: |
|
|
go install golang.org/x/tools/cmd/goimports@latest
|
|
|
|
- name: gofmt
|
|
run: |
|
|
if [ "$(find . -iname '*.go' | grep -v '\.pb\.go$' | xargs goimports -l)" ]
|
|
then
|
|
find . -iname '*.go' | grep -v '\.pb\.go$' | xargs goimports -d
|
|
exit 1
|
|
fi
|