-
-
Notifications
You must be signed in to change notification settings - Fork 19
160 lines (139 loc) · 4.05 KB
/
ci.yaml
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
name: Wait4X CI
on:
push:
branches:
- 'main'
- 'release/*'
tags:
- 'v*'
pull_request:
branches:
- '*'
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21.x
uses: actions/setup-go@v5
with:
go-version: 1.21.x
cache-dependency-path: go.sum
- name: Checkout Code
uses: actions/checkout@v4
- name: go-fmt
run: make check-gofmt
- name: go-vet
run: go vet ./...
- name: revive
run: |
go install github.com/mgechev/[email protected]
make check-revive
test:
name: Test
needs: check
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Go 1.21.x
uses: actions/setup-go@v5
with:
go-version: 1.21.x
cache-dependency-path: go.sum
- name: Test Wait4X
run: make test
- name: Convert coverage to lcov
uses: jandelgado/[email protected]
with:
infile: coverage.out
outfile: coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov
build:
name: Build
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
atkrad/wait4x
### versioning strategy
### push semver tag v3.2.1 on the default branch
# atkrad/wait4x:2.2.0
# atkrad/wait4x:2.2
# atkrad/wait4x:2
# atkrad/wait4x:latest
### push semver pre-release tag v3.0.0-beta.1 on the default branch
# atkrad/wait4x:3.0.0-beta.1
### push on the default branch
# atkrad/wait4x:edge
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=ref,event=pr
type=edge,branch=${{ github.event.repository.default_branch }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
config-inline: |
[worker.oci]
max-parallelism = 5
- name: Login to DockerHub
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build artifacts
uses: docker/bake-action@v5
with:
targets: artifact
provenance: false
- name: Move artifacts
run: |
mv ./dist/**/* ./dist/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wait4x-artifacts
path: ./dist/*
if-no-files-found: error
- name: Build images
uses: docker/bake-action@v5
with:
targets: image
push: ${{ github.ref_name == github.event.repository.default_branch || startsWith(github.ref, 'refs/tags/') }}
sbom: true
files: |
./docker-bake.hcl
${{ steps.meta.outputs.bake-file }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
if: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
short-description: ${{ github.event.repository.description }}
- name: GitHub Release
uses: softprops/action-gh-release@v2
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
draft: true
generate_release_notes: true
files: |
dist/*.tar.gz
dist/*.sha256sum
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}