Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast libigloo
Commits
a390f73b
Commit
a390f73b
authored
Apr 07, 2022
by
Philipp Schafft
🦁
Browse files
Update: Added artifact settings
parent
ad51223f
Pipeline
#2994
failed with stages
in 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
a390f73b
...
...
@@ -74,6 +74,10 @@ Build (clang, x86_64):
-
./autogen.sh
-
./configure || { cat config.log; exit 1; }
-
make
artifacts
:
paths
:
-
"
config.log"
expire_in
:
1 hour
# Sanitizer builds
...
...
@@ -93,6 +97,9 @@ Sanitizer:
-
make check || { find ./tests -name '*.log' -print -exec cat "{}" \;; cat test-suite.log; exit 1; }
# this statement needs to be there to disable copying of dependecies from other stage jobs - otherwhise you get funny errors - https://stackoverflow.com/a/47679028
dependencies
:
[]
artifacts
:
untracked
:
true
expire_in
:
1 hour
# Build and run tests
...
...
@@ -102,6 +109,10 @@ Test (x86_64):
-
make check || { cat test-suite.log; exit 1; }
needs
:
-
'
Build
(x86_64)'
artifacts
:
paths
:
-
"
test-suite.log"
expire_in
:
1 hour
Test Alpine (x86_64)
:
extends
:
.TemplateAlpine
...
...
@@ -110,6 +121,10 @@ Test Alpine (x86_64):
-
make check || { cat test-suite.log; exit 1; }
needs
:
-
'
Build
Alpine
(x86_64)'
artifacts
:
paths
:
-
"
test-suite.log"
expire_in
:
1 hour
Test (x86)
:
stage
:
test
...
...
@@ -119,6 +134,10 @@ Test (x86):
-
make check || { cat test-suite.log; exit 1; }
needs
:
-
'
Build
(x86)'
artifacts
:
paths
:
-
"
test-suite.log"
expire_in
:
1 hour
# Distcheck / Source tarballs
...
...
Write
Preview
Supports
Markdown
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