-
Notifications
You must be signed in to change notification settings - Fork 0
168 lines (135 loc) · 4.23 KB
/
golang.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
name: Go CI
on:
push:
tags:
- '*'
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
lint-go:
name: Lint Go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download build-essential
run: |
sudo apt update -y
sudo apt install -y build-essential
- uses: actions/setup-go@v4
with:
go-version: '>=1.21'
cache: true
cache-dependency-path: go.sum
- name: Download all Go modules
run: |
go mod download
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout 5m
test-go:
name: Test Go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download build-essential
run: |
sudo apt update -y
sudo apt install -y build-essential
- uses: actions/setup-go@v4
with:
go-version: '>=1.21'
cache: true
cache-dependency-path: go.sum
- name: Download all Go modules
run: |
go mod download
- name: Run tests
run: go test -race -covermode=atomic -timeout=30s ./...
build-go-docker:
name: Build Docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v5
if: ${{ ! startsWith(github.ref, 'refs/tags') }}
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: false
tags: ghcr.io/deepsquare-io/dpsproxy-server:latest
build-args: |
VERSION=dev
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Login to GHCR
if: startsWith(github.ref, 'refs/tags/')
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get the oci compatible version
if: startsWith(github.ref, 'refs/tags/')
id: get_version
run: |
OCI_VERSION=$(echo ${GITHUB_REF#refs/*/} | sed 's/+/-/g' | sed 's/v//g')
echo "VERSION=${OCI_VERSION}" >> $GITHUB_OUTPUT
- name: Build and export
if: startsWith(github.ref, 'refs/tags/')
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
ghcr.io/deepsquare-io/dpsproxy-server:latest
ghcr.io/deepsquare-io/dpsproxy-server:dev
ghcr.io/deepsquare-io/dpsproxy-server:${{ steps.get_version.outputs.VERSION }}
build-args: |
${{ steps.get_version.outputs.VERSION }}
cache-from: type=gha
cache-to: type=gha,mode=max
build:
name: Build Go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download build-essential
run: |
sudo apt update -y
sudo apt install -y make build-essential
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
check-latest: true
cache-dependency-path: go.mod
- name: Build
run: |
make build-all
- name: Get the version
if: startsWith(github.ref, 'refs/tags/')
id: get_version
run: |
VERSION=$(echo ${GITHUB_REF#refs/*/})
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT
- uses: sersoft-gmbh/setup-gh-cli-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
version: stable
- name: Create release and upload binaries
if: startsWith(github.ref, 'refs/tags/')
run: gh release create ${{ steps.get_version.outputs.VERSION }} -t ${{ steps.get_version.outputs.VERSION }} -F bin/checksums.md --prerelease=${{ contains(steps.get_version.outputs.VERSION, '-') }} bin/dpsproxy-* bin/checksums.txt
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}