Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
theora
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
theora
Merge requests
!6
Add gitlab ci jobs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add gitlab ci jobs
ci
into
master
Overview
3
Commits
2
Pipelines
1
Changes
1
Merged
Ralph Giles
requested to merge
ci
into
master
4 years ago
Overview
3
Commits
2
Pipelines
1
Changes
1
Expand
Add a basic autoconf and scons build for verifying code in gitlab repositories.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
71807172
2 commits,
4 years ago
1 file
+
29
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
29
−
0
Options
default
:
tags
:
-
docker
# Image from https://hub.docker.com/_/gcc/ based on Debian
image
:
gcc:9
autotools
:
stage
:
build
before_script
:
-
apt-get update &&
apt-get install -y libogg-dev libvorbis-dev
libsdl-dev libpng-dev libtiff-dev
doxygen fig2dev texlive texlive-latex-extra
script
:
-
./autogen.sh
-
./configure
-
make
-
make distcheck
scons
:
stage
:
build
before_script
:
-
apt-get update &&
apt-get install -y libogg-dev libvorbis-dev
libsdl-dev libpng-dev libtiff-dev
scons
script
:
-
scons
-
scons -c
Loading