From a9d8d36a84e4ae6223ea81c5521f86bdd15d9ce8 Mon Sep 17 00:00:00 2001 From: Gary Yendell Date: Tue, 11 Apr 2023 15:52:18 +0100 Subject: [PATCH] Remove internal GitLab CI config --- .gitlab-ci.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 2e106b1..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,30 +0,0 @@ -# Use controls group runners unless overridden in jobs -default: - tags: - - controls - -stages: - - build - - deploy - -wheel: - stage: build - image: python:3.7 - script: - - cd ${CI_PROJECT_DIR}/python/ - - pip install build 'pipenv==2021.5.29' - - python -m build --wheel --outdir dist/ - - python -m pipenv --python 3.7 lock -v --pypi-mirror https://pypiserver.diamond.ac.uk && cp Pipfile.lock dist/ - artifacts: - paths: - - python/dist/ - -deploy_dist: - stage: deploy - image: python:3.7 - script: - - cp python/dist/*whl /dls_sw/work/python3/RHEL7-x86_64/distributions - - cp python/dist/Pipfile.lock /dls_sw/work/python3/RHEL7-x86_64/distributions/${CI_PROJECT_NAME}-${CI_COMMIT_TAG}.Pipfile.lock - - echo "Run 'dls-release.py -t -a python3ext ${CI_PROJECT_NAME} ${CI_COMMIT_TAG}' to release to python3 area" - only: - - tags