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
divine-ltsmin-deb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Spot
divine-ltsmin-deb
Commits
fcdac55e
Commit
fcdac55e
authored
Jan 24, 2018
by
Alexandre Duret-Lutz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work on gitlab-ci integration
parent
bb43feb8
Pipeline
#347
passed with stages
in 4 minutes and 58 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
8 deletions
+27
-8
.gitlab-ci.yml
.gitlab-ci.yml
+24
-7
build.sh
build.sh
+3
-1
No files found.
.gitlab-ci.yml
View file @
fcdac55e
...
...
@@ -7,21 +7,38 @@ build-stable:
stage
:
build
except
:
-
/^upstream/
image
:
gadl/spot-debuild:stable
script
:
-
docker pull gadl/spot-debuild:stable
-
docker run --rm=true -v $PWD:/remote gadl/spot-debuild:stable /remote/build.sh stable
-
ls -l
-
./build.sh stable
-
ls -l _build_stable
artifacts
:
paths
:
-
_build_stable/
build-unstable
:
stage
:
build
except
:
-
/^upstream/
image
:
gadl/spot-debuild
script
:
-
docker pull gadl/spot-debuild
-
docker run --rm=true -v $PWD:/remote gadl/spot-debuild /remote/build.sh unstable
-
ls -l
-
./build.sh unstable
-
ls -l _build_unstable
artifacts
:
paths
:
-
_build_unstable/
publish
:
only
:
-
master
stage
:
publish
dependencies
:
-
build-stable
-
build-unstable
script
:
-
dput lrde *.changes
-
cd _build_stable
-
ls -l
-
echo dput lrde *.changes
-
cd ../_build_unstable
-
ls -l
-
echo dput lrde *.changes
build.sh
View file @
fcdac55e
#!/bin/sh
cd
/remote
rm
-rf
"_build_
$1
"
mkdir
-p
"_build_
$1
"
cd
"_build_
$1
"
git clone https://gitlab.lrde.epita.fr/spot/divine-ltsmin-deb.git
cd
divine-ltsmin-deb
case
$1
in
...
...
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