Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.devtools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
bob
bob.devtools
Commits
e4075090
Commit
e4075090
authored
3 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[data/gitlab-ci] remove base-build.yaml as indicated by
@amohammadi
parent
7afb23a9
No related branches found
No related tags found
1 merge request
!263
Implements builds for Apple Silicon
Pipeline
#56674
passed
3 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/devtools/data/gitlab-ci/base-build.yaml
+0
-59
0 additions, 59 deletions
bob/devtools/data/gitlab-ci/base-build.yaml
with
0 additions
and
59 deletions
bob/devtools/data/gitlab-ci/base-build.yaml
deleted
100644 → 0
+
0
−
59
View file @
7afb23a9
# This YAML file contains descriptions for the CI of most of our Bob/BEAT/BATL
# packages - do **not** modify it unless you know what you're doing (and up
# to!)
# Definition of global variables (all stages)
variables
:
PYTHONUNBUFFERED
:
"
1"
CONDA_ROOT
:
"
${CI_PROJECT_DIR}/miniconda"
BOOTSTRAP
:
"
https://gitlab.idiap.ch/bob/bob.devtools/raw/master/bob/devtools/bootstrap.py"
# Definition of our build pipeline order
stages
:
-
build
# Build targets
.build_template
:
stage
:
build
script
:
-
curl --silent "${BOOTSTRAP}" --output "bootstrap.py"
-
python3 bootstrap.py -vv channel base
-
source ${CONDA_ROOT}/etc/profile.d/conda.sh
-
conda activate base
-
conda clean --all
-
bdt ci base-build -vv nopython.txt
-
bdt ci base-build -vv python.txt
-
'
[
"${CI_COMMIT_REF_NAME}"
=
"master"
]
&&
bdt
ci
base-deploy
-vv'
-
bdt ci clean -vv
build_linux
:
extends
:
.build_template
tags
:
-
bob
-
docker
image
:
quay.io/condaforge/linux-anvil-cos7-x86_64
cache
:
key
:
"
linux-cache"
build_macos_intel
:
extends
:
.build_template
tags
:
-
bob
-
macos
-
intel
cache
:
key
:
"
macos-intel-cache"
build_macos_arm
:
extends
:
.build_template
tags
:
-
bob
-
macos
-
arm
cache
:
key
:
"
macos-arm-cache"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment