Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
db303173
Commit
db303173
authored
Jan 03, 2019
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gitlab-ci: Add meson tests to build
parent
220cdae2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
1 deletion
+31
-1
.gitlab-ci.yml
.gitlab-ci.yml
+31
-1
No files found.
.gitlab-ci.yml
View file @
db303173
image
:
registry.freedesktop.org/libnice/libnice/build-tools:centos-7
stages
:
-
build
-
test
build autotools
:
stage
:
build
...
...
@@ -35,7 +36,6 @@ build meson:
PREFIX
:
"
${CI_PROJECT_DIR}/libnice-prefix"
DEPENDENCIES
:
>
meson
net-tools
gnutls-devel
gupnp-igd-devel
glib2-devel
...
...
@@ -51,6 +51,36 @@ build meson:
-
meson --werror build/
-
ninja -C build/
artifacts
:
paths
:
-
build/
test meson
:
image
:
'
fedora'
stage
:
test
allow_failure
:
true
dependencies
:
-
build meson
except
:
-
schedules
variables
:
PREFIX
:
"
${CI_PROJECT_DIR}/libnice-prefix"
DEPENDENCIES
:
>
meson
net-tools
gnutls-devel
gupnp-igd-devel
glib2-devel
gobject-introspection-devel
gstreamer1-devel
redhat-rpm-config
before_script
:
-
dnf install -y ${DEPENDENCIES}
-
mkdir -p "${CI_PROJECT_DIR}"
script
:
-
ifconfig
-
meson test -C build --print-errorlogs
artifacts
:
when
:
on_failure
paths
:
-
build/meson-logs/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment