-
Notifications
You must be signed in to change notification settings - Fork 5
51 lines (49 loc) · 1.48 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
name: go
on:
push:
branches: ['*']
tags: ['v*']
pull_request:
branches: ['*']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22']
dir: ['pkg', 'cmd/zstdseek']
steps:
- uses: dcarbone/[email protected]
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: ${{ matrix.dir }}/go.sum
- name: Display Go version
run: go version
- name: Install dependencies (${{ matrix.dir }})
working-directory: ./${{ matrix.dir }}
run: |
go get .
- name: go work
run: |
if [ "${{ matrix.dir }}" == "pkg" ]; then
echo "Skipping go workspace for ${{ matrix.dir }}"
rm -f go.work*
exit 0
fi
go work init
go work use pkg
go work use ${{ matrix.dir }}
- name: Build (${{ matrix.dir }})
working-directory: ./${{ matrix.dir }}
run: |
for OSARCH in $(go tool dist list -json | jq -r '.[] | select(.FirstClass) | [.GOOS , .GOARCH] | join("/")'); do
IFS="/" read -r OS ARCH <<< "$OSARCH"
echo "Building for $OS $ARCH"
GOOS=$OS GOARCH=$ARCH go build ./...
done
- name: Test (${{ matrix.dir }})
working-directory: ./${{ matrix.dir }}
run: go test -v ./...