-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
199 lines (179 loc) · 5.04 KB
/
.gitlab-ci.yml
File metadata and controls
199 lines (179 loc) · 5.04 KB
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
197
198
199
# SPDX-License-Identifier: PMPL-1.0-or-later
# Copyright (c) 2025 conflow contributors
#
# GitLab CI/CD Configuration for conflow
# RSR-Compliant Pipeline
stages:
- check
- test
- build
- compliance
- release
variables:
CARGO_HOME: ${CI_PROJECT_DIR}/.cargo
RUSTFLAGS: "-D warnings"
# Cache cargo dependencies
.cargo-cache: &cargo-cache
cache:
key: ${CI_JOB_NAME}
paths:
- .cargo/
- target/
# -----------------------------------------------------------------------------
# Check Stage
# -----------------------------------------------------------------------------
format:
stage: check
image: rust:latest
<<: *cargo-cache
script:
- rustup component add rustfmt
- cargo fmt -- --check
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
lint:
stage: check
image: rust:latest
<<: *cargo-cache
script:
- rustup component add clippy
- cargo clippy --all-targets --all-features -- -D warnings
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
audit:
stage: check
image: rust:latest
<<: *cargo-cache
script:
- cargo install cargo-audit
- cargo audit
allow_failure: true
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
# -----------------------------------------------------------------------------
# Test Stage
# -----------------------------------------------------------------------------
test:
stage: test
image: rust:latest
<<: *cargo-cache
script:
- cargo test --all-features
coverage: '/^\d+.\d+% coverage/'
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
# -----------------------------------------------------------------------------
# Build Stage
# -----------------------------------------------------------------------------
build:debug:
stage: build
image: rust:latest
<<: *cargo-cache
script:
- cargo build --all-features
artifacts:
paths:
- target/debug/conflow
expire_in: 1 day
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
build:release:
stage: build
image: rust:latest
<<: *cargo-cache
script:
- cargo build --release --all-features
artifacts:
paths:
- target/release/conflow
expire_in: 1 week
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
- if: '$CI_COMMIT_TAG'
# -----------------------------------------------------------------------------
# Compliance Stage
# -----------------------------------------------------------------------------
rsr-compliance:
stage: compliance
image: rust:latest
<<: *cargo-cache
script:
- cargo build --release
- ./target/release/conflow rsr check --format json > rsr-report.json || true
- cat rsr-report.json
artifacts:
paths:
- rsr-report.json
reports:
codequality: rsr-report.json
allow_failure: true
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
spdx-check:
stage: compliance
image: alpine:latest
script:
- |
echo "Checking SPDX headers..."
missing=0
for file in $(find src -name "*.rs"); do
if ! head -1 "$file" | grep -q "SPDX-License-Identifier"; then
echo "Missing SPDX header: $file"
missing=$((missing + 1))
fi
done
if [ $missing -gt 0 ]; then
echo "ERROR: $missing files missing SPDX headers"
exit 1
fi
echo "All source files have SPDX headers"
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
# -----------------------------------------------------------------------------
# Release Stage
# -----------------------------------------------------------------------------
publish:crates:
stage: release
image: rust:latest
<<: *cargo-cache
script:
- cargo publish --dry-run
rules:
- if: '$CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+$/'
when: manual
release:
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
script:
- echo "Creating release for $CI_COMMIT_TAG"
release:
tag_name: $CI_COMMIT_TAG
description: "Release $CI_COMMIT_TAG"
assets:
links:
- name: "Linux Binary"
url: "${CI_PROJECT_URL}/-/jobs/artifacts/${CI_COMMIT_TAG}/raw/target/release/conflow?job=build:release"
rules:
- if: '$CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+$/'
# -----------------------------------------------------------------------------
# Documentation
# -----------------------------------------------------------------------------
pages:
stage: release
image: rust:latest
<<: *cargo-cache
script:
- cargo doc --no-deps --all-features
- mv target/doc public
- echo '<meta http-equiv="refresh" content="0; url=conflow/index.html">' > public/index.html
artifacts:
paths:
- public
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'