From e4075090795f6b4c3c5fda53d614a89d0e35a28a Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Tue, 30 Nov 2021 16:13:53 +0100
Subject: [PATCH] [data/gitlab-ci] remove base-build.yaml as indicated by
 @amohammadi

---
 bob/devtools/data/gitlab-ci/base-build.yaml | 59 ---------------------
 1 file changed, 59 deletions(-)
 delete mode 100644 bob/devtools/data/gitlab-ci/base-build.yaml

diff --git a/bob/devtools/data/gitlab-ci/base-build.yaml b/bob/devtools/data/gitlab-ci/base-build.yaml
deleted file mode 100644
index 97e652a5..00000000
--- a/bob/devtools/data/gitlab-ci/base-build.yaml
+++ /dev/null
@@ -1,59 +0,0 @@
-# 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"
-- 
GitLab