Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
SpeexDSP
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
SpeexDSP
Commits
2f852101
Commit
2f852101
authored
Oct 02, 2020
by
Tristan Matthews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: add basic gitlab-ci
This is largely based off of speex's.
parent
64cbfa9b
Pipeline
#2156
passed with stage
in 1 minute and 52 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
.gitlab-ci.yml
.gitlab-ci.yml
+39
-0
No files found.
.gitlab-ci.yml
0 → 100644
View file @
2f852101
default
:
tags
:
-
docker
# Image from https://hub.docker.com/_/gcc/ based on Debian
image
:
gcc:9
.autoconf
:
stage
:
build
before_script
:
-
apt-get update &&
apt-get install -y libfftw3-dev
script
:
-
./autogen.sh
-
./configure ${CONFIG_FLAGS}
-
make
-
make check
autoconf
:
extends
:
.autoconf
script
:
-
./autogen.sh
-
./configure ${CONFIG_FLAGS}
-
make
-
make distcheck
fixed-point
:
extends
:
.autoconf
variables
:
CONFIG_FLAGS
:
--enable-fixed-point
no-float
:
extends
:
.autoconf
variables
:
CONFIG_FLAGS
:
--enable-fixed-point --disable-float-api
no-examples
:
extends
:
.autoconf
variables
:
CONFIG_FLAGS
:
--disable-examples
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