Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
Colin Watson
libpipeline
Commits
9c4fde4a
Commit
9c4fde4a
authored
Nov 25, 2020
by
Colin Watson
Browse files
Add .gitlab-ci.yml
parent
5498dd55
Pipeline
#221353694
passed with stages
in 3 minutes and 32 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
0 deletions
+43
-0
.gitlab-ci.yml
.gitlab-ci.yml
+43
-0
No files found.
.gitlab-ci.yml
0 → 100644
View file @
9c4fde4a
default
:
image
:
gcc
stages
:
-
build
-
test
bootstrap
:
stage
:
.pre
before_script
:
-
apt -qq update
-
apt -y -qq install autoconf automake autopoint libtool
script
:
-
if test -d gnulib-src; then git -C gnulib-src pull; else git clone git://git.sv.gnu.org/gnulib gnulib-src; fi
-
rm -rf bootstrapped
-
mkdir bootstrapped
-
tar -cf - --exclude=bootstrapped . | tar -C bootstrapped -xf -
-
(cd bootstrapped && GNULIB_URL=../gnulib-src ./bootstrap)
cache
:
paths
:
-
gnulib-src/
artifacts
:
paths
:
-
bootstrapped/
build-distcheck
:
stage
:
build
before_script
:
-
apt -qq update
-
apt -y -qq install build-essential pkg-config check
script
:
-
(cd bootstrapped && ./configure)
-
make -C bootstrapped distcheck V=1
build-out-of-tree
:
stage
:
build
before_script
:
-
apt -qq update
-
apt -y -qq install build-essential pkg-config check
script
:
-
mkdir -p bootstrapped/obj
-
(cd bootstrapped/obj && ../configure)
-
make -C bootstrapped/obj check V=1
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