-
Notifications
You must be signed in to change notification settings - Fork 0
196 lines (170 loc) · 5.52 KB
/
ci.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
name: ci
on:
push:
jobs:
staticcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
cache: true
- name: Static check
uses: dominikh/[email protected]
with:
version: "2024.1"
install-go: false
cache-key: 1.23
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
name: [unit]
go-version: [1.23]
runs-on: ${{ matrix.os }}
name: test (${{ matrix.name }}, ${{ matrix.os }})
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Create temporary .env
run: touch .env
- name: Run [${{ matrix.name }} - ${{ matrix.os }}] tests
run: make test
builds:
timeout-minutes: 20
strategy:
matrix:
go-version: [1.23]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: build (${{ matrix.os }})
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Create temporary .env
run: touch .env
- name: Build [go${{ matrix.go-version }} - ${{ matrix.os }}]
run: make build
release-binaries:
if: github.ref_type == 'tag'
strategy:
matrix:
go-version: [ 1.23 ]
os: [ ubuntu-latest]
needs: [ tests, staticcheck, builds ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run GoReleaser Linux
run: |
docker run \
--rm \
--privileged \
-e CGO_ENABLED=1 \
-e GITHUB_TOKEN \
-v /var/run/docker.sock:/var/run/docker.sock \
-v `pwd`:/go/src/$(PACKAGE_NAME) \
-w /go/src/$(PACKAGE_NAME) \
ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \
--clean --config .goreleaser-Linux.yml
env:
PACKAGE_NAME: github.com/AndriyKalashnykov/go-kafka-confluent-examples
GOLANG_CROSS_VERSION: v1.23
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser MacOS
run: |
docker run \
--rm \
--privileged \
-e CGO_ENABLED=1 \
-e GITHUB_TOKEN \
-v /var/run/docker.sock:/var/run/docker.sock \
-v `pwd`:/go/src/$(PACKAGE_NAME) \
-w /go/src/$(PACKAGE_NAME) \
ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \
--clean --config .goreleaser-Darwin-cross.yml
env:
PACKAGE_NAME: github.com/AndriyKalashnykov/go-kafka-confluent-examples
GOLANG_CROSS_VERSION: v1.23
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release-docker-images:
if: github.ref_type == 'tag'
runs-on: ubuntu-latest
needs: [tests, staticcheck, builds]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Convert owner to lower case
run: |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
env:
OWNER: '${{ github.repository_owner }}'
- name: Login to image repository
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GH_ACCESS_TOKEN }}
- name: GitHub Tag Name example
run: |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ github.ref_name }}"
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ env.OWNER_LC }}/kafka-confluent-go-consumer
flavor: latest=true
tags: |
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=semver,pattern=v{{version}}
labels: |
org.opencontainers.image.vendor=Andriy Kalashnykov - [email protected]
org.opencontainers.image.title=Confluent Kafka Cloud Consumer in Go
org.opencontainers.image.description=Confluent Kafka Cloud Consumer in Go
org.opencontainers.image.licenses=MIT
org.opencontainers.image.version=${{ github.ref_name }}"
io.artifacthub.package.readme-url=https://raw.githubusercontent.com/AndriyKalashnykov/go-kafka-confluent-examples/main/README.md
io.artifacthub.package.maintainers=[{\"name\":\"Andriy Kalashnykov\",\"email\":\"[email protected]\"}]
io.artifacthub.package.license=MIT
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile.consumer
platforms: linux/amd64
push: true
provenance: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Output container image digest
run: echo ${{ steps.docker_build.outputs.digest }}