-
Notifications
You must be signed in to change notification settings - Fork 9
70 lines (59 loc) · 2.29 KB
/
main.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
name: main CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_test_with_prometheus_support:
runs-on: ubuntu-latest
steps:
# install deps
- uses: actions/checkout@v4
- name: install debian-packaged dependencies
run: sudo apt install -y libgtest-dev libbenchmark-dev libfmt-dev tidy git python3 python3-dateutil python3-pip
- name: install pypi-packaged dependencies
run: sudo pip3 install pytest 'black==22.8.0' 'conan==2.9.1'
# NOTE: since we later run "make" using the normal "builder" user, we must use Conan using that same user (so avoid the "sudo"!!)
- name: install Conan-packaged dependencies
run: |
conan profile detect --force
conan remote update conancenter --url https://center2.conan.io
conan install conanfile.txt --build=missing
# build & test
- name: check Python formatting
run: make format_check
- name: build cmonitor (with Prometheus support)
run: make PROMETHEUS_SUPPORT=1
- name: run unit tests
run: make test PROMETHEUS_SUPPORT=1
build_test_without_prometheus_support:
runs-on: ubuntu-latest
steps:
# install deps
- uses: actions/checkout@v4
- name: install debian-packaged dependencies
run: sudo apt install -y libgtest-dev libbenchmark-dev libfmt-dev tidy git python3 python3-dateutil python3-pip
- name: install pypi-packaged dependencies
run: sudo pip3 install pytest black
# build & test
- name: build cmonitor (with Prometheus support)
run: make PROMETHEUS_SUPPORT=0
- name: run unit tests
run: make test PROMETHEUS_SUPPORT=0
# this step is useful to check that the Dockerfile still works fine
alpine_docker_image_creation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image (no push)
uses: mr-smithers-excellent/docker-build-push@v6
with:
# options related to BUILDing the docker image:
dockerfile: ./collector/docker/Dockerfile
multiPlatform: false
platform: linux/amd64
image: cmonitor
# options related to PUSHing the docker image:
registry: docker.io
pushImage: false # for now official docker images are published on DockerHub manually on new tags...