forked from net2share/dnstm
-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (54 loc) · 1.41 KB
/
ci.yml
File metadata and controls
64 lines (54 loc) · 1.41 KB
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
name: CI
on:
push:
branches: ['**']
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux]
goarch: [amd64, arm64, arm, 386]
include:
- goarch: arm
goarm: 7
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
GOARM: ${{ matrix.goarm }}
run: |
ARCH=${{ matrix.goarch }}
if [ "$ARCH" = "arm" ]; then
ARCH="armv7"
fi
OUTPUT_NAME="dnstm-${{ matrix.goos }}-${ARCH}"
go build -ldflags="-s -w -X main.Version=dev -X main.BuildTime=$(date -u +%Y-%m-%dT%H:%M:%SZ)" -o "${OUTPUT_NAME}" .
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: dnstm-${{ matrix.goos }}-${{ matrix.goarch == 'arm' && 'armv7' || matrix.goarch }}
path: dnstm-*
retention-days: 90
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Test
run: go test -v ./...
- name: Vet
run: go vet ./...