Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coeurl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
coeurl
Merge requests
!1
Add basic CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add basic CI
ci
into
master
Overview
0
Commits
3
Pipelines
17
Changes
1
Merged
Nicolas Werner
requested to merge
ci
into
master
3 years ago
Overview
0
Commits
3
Pipelines
17
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 15
2dcd93b5
3 years ago
version 14
e8183065
3 years ago
version 13
44e96e03
3 years ago
version 12
d1ad2311
3 years ago
version 11
93583142
3 years ago
version 10
72d86f7a
3 years ago
version 9
7b300203
3 years ago
version 8
b358d591
3 years ago
version 7
eac49d00
3 years ago
version 6
50917be2
3 years ago
version 5
fdb3aae4
3 years ago
version 4
7f0362da
3 years ago
version 3
5c995392
3 years ago
version 2
b304cb4a
3 years ago
version 1
48d45fae
3 years ago
master (base)
and
version 2
latest version
c162ffc2
3 commits,
3 years ago
version 15
2dcd93b5
13 commits,
3 years ago
version 14
e8183065
13 commits,
3 years ago
version 13
44e96e03
12 commits,
3 years ago
version 12
d1ad2311
11 commits,
3 years ago
version 11
93583142
10 commits,
3 years ago
version 10
72d86f7a
9 commits,
3 years ago
version 9
7b300203
8 commits,
3 years ago
version 8
b358d591
8 commits,
3 years ago
version 7
eac49d00
7 commits,
3 years ago
version 6
50917be2
6 commits,
3 years ago
version 5
fdb3aae4
5 commits,
3 years ago
version 4
7f0362da
4 commits,
3 years ago
version 3
5c995392
3 commits,
3 years ago
version 2
b304cb4a
2 commits,
3 years ago
version 1
48d45fae
1 commit,
3 years ago
1 file
+
21
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
21
−
0
Options
variables
:
CCACHE_COMPILERCHECK
:
content
CCACHE_DIR
:
"
${CI_PROJECT_DIR}/.ccache"
build
:
stage
:
build
image
:
alpine:latest
tags
:
[
docker
]
before_script
:
-
sed -i '/edge/s/^#//' /etc/apk/repositories
-
apk update && apk add clang-extra-tools meson git python3 py3-pip py3-flask lcov gcovr libcurl libevent grep
-
export PATH="$PATH:/root/.local/bin"
-
pip3 install --user reuse
script
:
-
meson setup builddir -Db_coverage=true -Dtests=true -Dexamples=true
-
meson compile -C builddir
-
./scripts/run_tls_testserver.sh &
-
./builddir/tests/requests_tls -d
-
ninja -C builddir coverage-text
-
grep TOTAL builddir/meson-logs/coverage.txt
Loading