Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bsp-base
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vesta
bsp-base
Merge requests
!4
Adding .gitlab-ci.yml for commits to master. ES-99
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adding .gitlab-ci.yml for commits to master. ES-99
feature/ci
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
David Mondou
requested to merge
feature/ci
into
master
7 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Viewing commit
307cd86c
Show latest version
2 files
+
42
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
307cd86c
Adding .gitlab-ci.yml for commits to master.
· 307cd86c
David Mondou
authored
7 years ago
.gitlab-ci.yml
0 → 100644
+
26
−
0
Options
#Execute repo sync and run vesta-300-developer build
stages
:
-
setup
-
build
-
shutdown
setup
:
stage
:
setup
only
:
-
master
script
:
-
docker start vesta-builds
build
:
stage
:
build
only
:
-
master
script
:
-
docker exec -i vesta-builds bash < build.sh
shutdown
:
stage
:
shutdown
only
:
-
master
script
:
-
docker stop vesta-builds
Loading