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
liboggz
Commits
d811d324
Commit
d811d324
authored
Aug 13, 2018
by
Viktor Gal
Browse files
add CI
parent
f49574ed
Pipeline
#291
passed with stage
in 1 minute and 31 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
d811d324
# Build liboggz with GCC
build-gcc
:
tags
:
-
alpine
-
docker
stage
:
build
before_script
:
-
apk update
-
apk add git make gcc g++ automake autoconf libtool gettext libogg-dev
script
:
# compile
-
./autogen.sh
-
./configure || cat config.log
-
make
# Build liboggz with clang
build-clang
:
tags
:
-
alpine
-
docker
stage
:
build
before_script
:
-
apk update
-
apk add git make clang gcc g++ automake autoconf libtool gettext libogg-dev
script
:
# compile
-
./autogen.sh
-
CC=clang ./configure || cat config.log
-
make
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