-
Notifications
You must be signed in to change notification settings - Fork 3
161 lines (147 loc) · 3.99 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
161
name: "Price Feeder & Alarms Dispatcher CI"
on:
workflow_dispatch:
push:
branches:
- "main"
- "dev-*.*"
tags:
- "*"
pull_request:
branches:
- "main"
- "dev-*.*"
paths-ignore:
- ".gitignore"
- "README.md"
concurrency:
cancel-in-progress: true
group: |-
${{ format(
'{0}-{1}-{2}',
github.ref_name,
github.ref_type,
github.event_name
) }}
defaults:
run:
shell: "sh"
env:
CARGO_INCREMENTAL: "0"
jobs:
check_formatting:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- run: |-
"cargo" "fmt" --all --check
audit_dependencies:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "nolus-protocol/rust-ci-actions/rust_cache@main"
with:
update_and_cache_toolchains: "true"
- uses: "nolus-protocol/rust-ci-actions/audit_dependencies@main"
linting:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "nolus-protocol/rust-ci-actions/rust_cache@main"
with:
update_and_cache_toolchains: "true"
- name: "Run clippy"
run: |-
"cargo" "clippy" --workspace -- -D "warnings"
code_coverage:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "nolus-protocol/rust-ci-actions/rust_cache@main"
with:
update_and_cache_toolchains: "true"
- uses: "nolus-protocol/rust-ci-actions/code_coverage@main"
test_release_profile:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "nolus-protocol/rust-ci-actions/rust_cache@main"
with:
update_and_cache_toolchains: "true"
- name: "Run tests in release profile"
run: |-
"cargo" "test" --workspace --release
build:
runs-on: "ubuntu-latest"
needs:
- "check_formatting"
- "audit_dependencies"
- "linting"
- "code_coverage"
- "test_release_profile"
if: |-
github.ref_type == 'tag'
strategy:
fail-fast: true
matrix:
package:
- "alarms-dispatcher"
- "market-data-feeder"
# GitHub Actions escaped string evaluation
name: "Build image [${{ matrix.package }}]"
permissions:
packages: write
env:
container_registry: "ghcr.io"
container_repository: "nolus-protocol"
package: |-
${{ matrix.package }}
tag: |-
${{ github.ref_name }}
steps:
- uses: "actions/checkout@v4"
- name: "Build image"
run: |-
set -e
"docker" \
"build" \
--build-arg "package=${package}" \
--build-arg "profile=release" \
--build-arg "profile_output_dir=release" \
--file "./Containerfile" \
--pull \
--tag "service" \
--target "service" \
"."
- name: "Login at container registry"
uses: "docker/login-action@v3"
with:
registry: |-
${{ env.container_registry }}
username: |-
${{ github.actor }}
password: |-
${{ secrets.GITHUB_TOKEN }}
- name: "Push image to container registry"
run: |
set -e
image_name="${package}"
readonly image_name
base_url="${container_registry}/${container_repository}"
readonly base_url
image_url="${base_url}/${image_name}"
readonly image_url
regex="^[[:digit:]]\{1,\}\.[[:digit:]]\{1,\}\.[[:digit:]]\{1,\}\$"
readonly regex
if "grep" -q -s "${regex}" <<-EOF
${tag}
EOF
then
"docker" "tag" "service" "${image_url}:latest"
"docker" "push" "${image_url}:latest"
fi
for image_tag in "${tag}" "dev"
do
"docker" "tag" "service" "${image_url}:${image_tag}"
"docker" "push" "${image_url}:${image_tag}"
done