Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sso
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ai
sso
Commits
ad09525d
Commit
ad09525d
authored
6 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Switch CI to the standard pipeline
parent
b56f4cec
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+1
-86
1 addition, 86 deletions
.gitlab-ci.yml
with
1 addition
and
86 deletions
.gitlab-ci.yml
+
1
−
86
View file @
ad09525d
stages
:
-
test
-
build_src
-
build_pkg
-
upload
run_tests
:
stage
:
test
image
:
"
ai/test:base"
script
:
-
"
apt-get
install
-q
-y
autoconf
automake
libtool
pkg-config
apache2-dev
apache2
swig
libpam0g-dev
python-dev
python-setuptools
python-mox
python-flask
python-flup
python-werkzeug
python-nose
python-m2crypto
python-beautifulsoup"
-
"
./autogen.sh
&&
./configure
--enable-pam-sso
--enable-mod-sso
&&
make
check"
build:src
:
stage
:
build_src
image
:
"
ai/build:base"
script
:
"
build-dsc"
artifacts
:
paths
:
-
build-deb/
only
:
-
master
build:src-stretch
:
stage
:
build_src
image
:
"
ai/build:stretch"
script
:
"
build-dsc"
artifacts
:
paths
:
-
build-deb/
only
:
-
master
-
nonce
build:pkg
:
stage
:
build_pkg
image
:
"
ai/build:base"
script
:
"
build-deb"
dependencies
:
-
build:src
artifacts
:
paths
:
-
output-deb/
only
:
-
master
build:pkg-stretch
:
stage
:
build_pkg
image
:
"
ai/build:stretch"
script
:
"
build-deb"
dependencies
:
-
build:src-stretch
artifacts
:
paths
:
-
output-deb/
only
:
-
master
-
nonce
upload:pkg
:
stage
:
upload
image
:
"
ai/pkg:base"
script
:
"
upload-packages"
dependencies
:
-
build:pkg
only
:
-
master
upload:pkg-stretch
:
stage
:
upload
image
:
"
ai/pkg:base"
script
:
"
upload-packages
--repository=stretch-ai"
dependencies
:
-
build:pkg-stretch
only
:
-
master
upload:pkg-nonce
:
stage
:
upload
image
:
"
ai/pkg:base"
script
:
"
upload-packages
--repository=ai3"
dependencies
:
-
build:pkg-stretch
only
:
-
nonce
include
:
"
https://git.autistici.org/ai3/build-deb/raw/master/ci-common.yml"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment