Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Alphafold3
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
RC Data Science
community-containers
Alphafold3
Merge requests
!4
Made edits to gitlab-ci.yml
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Made edits to gitlab-ci.yml
edit-gitlab-ci
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Fortune Iriaye
requested to merge
edit-gitlab-ci
into
main
6 months ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
e667ff8a
1 commit,
6 months ago
1 file
+
5
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
5
−
1
Options
default
:
image
:
python:3.12-
slim
image
:
python:3.12-
bullseye
workflow
:
rules
:
@@ -12,6 +12,7 @@ variables:
PIP_CACHE_DIR
:
"
${CI_PROJECT_DIR}/.cache/pip"
PIP_INDEX_URL
:
"
https://__token__:${CI_JOB_TOKEN}@gitlab.com/api/v4/projects/${CI_PROJECT_ID}/packages/pypi/simple"
PIP_EXTRA_INDEX_URL
:
"
https://pypi.org/simple"
CXX
:
"
/usr/bin/g++"
stages
:
-
build
@@ -20,6 +21,8 @@ stages:
build_package
:
stage
:
build
before_script
:
-
apt-get update && apt-get install -y g++ make build-essential cmake
script
:
-
pip install --upgrade pip
-
pip install setuptools wheel build
@@ -54,6 +57,7 @@ build_and_push_docker_image:
DOCKER_TLS_CERTDIR
:
"
/certs"
before_script
:
-
echo "${CI_REGISTRY_PASSWORD}" | docker login -u "${CI_REGISTRY_USER}" --password-stdin ${CI_REGISTRY}
-
apt-get update && apt-get install -y g++ make build-essential cmake
script
:
-
echo "Building docker image and tagging as latest"
-
docker pull ${DOCKER_IMAGE_NAME}:latest ||
true
Loading