-
Notifications
You must be signed in to change notification settings - Fork 171
53 lines (45 loc) · 1.18 KB
/
build.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
name: Build
on:
pull_request:
branches:
- master
- dev
push:
branches:
- master
- dev
- github_actions
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Setup golang
id: setup-go
uses: actions/setup-go@v3
with:
go-version: '^1.20'
- name: Cache golang
id: cache-golang
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-${{ matrix.golang-version }}-golang-${{ hashFiles('go.sum') }}
restore-keys: |
${{ runner.os }}-${{ matrix.golang-version }}-golang-
- name: Install golang dependencies
run: |
go mod download -x
go install github.com/AlekSi/gocoverutil@latest
if: |
steps.cache-golang.outputs.cache-hit != 'true'
- run: make init
- run: make
- name: Docker build
run: |
docker build -t clickhouse/clickhouse_exporter:latest .
docker run --rm clickhouse/clickhouse_exporter:latest --help