Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
adaptive
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
Service Desk
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Quantum Tinkerer
adaptive
Merge requests
!136
build the Dockerimage used in CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
build the Dockerimage used in CI
docker
into
master
Overview
1
Commits
1
Pipelines
24
Changes
2
Merged
Bas Nijholt
requested to merge
docker
into
master
6 years ago
Overview
1
Commits
1
Pipelines
24
Changes
2
Expand
0
0
Merge request reports
Viewing commit
925044ac
Show latest version
2 files
+
34
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
925044ac
build the Dockerimage used in CI
· 925044ac
Bas Nijholt
authored
6 years ago
.gitlab-ci.yml
+
19
−
3
Options
image
:
quantumtinkerer/research
image
:
gitlab.kwant-project.org:5005/qt/adaptive
test
:
script
:
-
pip install -r test-requirements.txt
-
conda install -y -q scikit-optimize
-
py.test --verbose --cov=adaptive --cov-report term --cov-report html adaptive
artifacts
:
paths
:
@@ -18,3 +16,21 @@ authors check:
check whitespace style
:
script
:
./check_whitespace
allow_failure
:
true
build docker
:
image
:
name
:
gcr.io/kaniko-project/executor:debug
entrypoint
:
[
"
"
]
before_script
:
-
docker login -u $CI_DEPLOY_USER -p $CI_DEPLOY_PASSWORD $CI_REGISTRY
-
export CI_REF=${CI_COMMIT_TAG:-latest}
script
:
-
/kaniko/executor
--context $CI_PROJECT_DIR
--dockerfile $CI_PROJECT_DIR/Dockerfile
--destination $CI_REGISTRY_IMAGE:$CI_REF
only
:
changes
:
-
Dockerfile
-
environment.yml
-
test-requirements.txt
Loading