Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
id
auth
Commits
baef6675
Commit
baef6675
authored
Nov 02, 2017
by
ale
Browse files
Add CI configuration
parent
3f8dd868
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
baef6675
stages
:
-
test
-
build_src
-
build_pkg
-
upload
test
:
stage
:
test
image
:
"
ai/test:go"
script
:
"
go-test-runner
.
./server"
build:src:
stage
:
build_src
image
:
"
ai/build:stretch"
script
:
"
build-dsc"
artifacts
:
paths
:
-
build-deb/
only
:
-
master
build:pkg:
stage
:
build_pkg
image
:
"
ai/build:stretch"
script
:
"
build-deb"
dependencies
:
-
build:src
artifacts
:
paths
:
-
output-deb/
only
:
-
master
upload:pkg:
stage
:
upload
image
:
"
ai/pkg:base"
script
:
"
upload-packages
-r
ai3"
dependencies
:
-
build:pkg
only
:
-
master
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