Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vereign Client Library
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Code
Vereign Client Library
Merge requests
!6
Ci - automated build
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Ci - automated build
ci
into
master
Overview
0
Commits
14
Pipelines
0
Changes
1
Merged
Alexey Kuklin
requested to merge
ci
into
master
6 years ago
Overview
0
Commits
14
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4aadaf33
14 commits,
6 years ago
1 file
+
23
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
23
−
0
Options
image
:
registry.vereign.com/docker/vcl-build-base:master
stages
:
-
build
build
:
stage
:
build
artifacts
:
paths
:
-
build.tgz
expire_in
:
1 week
only
:
-
ci
tags
:
-
dell
script
:
-
mkdir -p $GOPATH/src/code.vereign.com/code
-
ln -s `pwd` $GOPATH/src/code.vereign.com/code/
-
cd $GOPATH/src/code.vereign.com/code/vcl
-
git config --global credential.https://code.vereign.com.username gitlab-ci-token
-
git config --global credential.helper "store --file /tmp/store"
-
echo https://gitlab-ci-token:$CI_JOB_TOKEN@code.vereign.com > /tmp/store
-
make
-
tar -czf build.tgz -C /builds/code/vcl/javascript/dist/. .
Loading