From b66a98695153664664882df96d9026c8aa7444b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20BRON=C3=88S?= <romain.brones@synchrotron-soleil.fr> Date: Tue, 6 Aug 2024 16:48:13 +0200 Subject: [PATCH] Remove gitlab pipeline test --- .gitlab-ci.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index e952c0a..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,32 +0,0 @@ -image: python:latest - -# Default stages -# .pre -# build -# test -# deploy -# .post - -build-job: # This job runs in the build stage, which runs first. - stage: build - script: - - echo "Compiling the code..." - - make build - - echo "Compile complete." - artifacts: - name: "FofbTool" - paths: - - dist/ - -release_job: - stage: deploy - image: registry.gitlab.com/gitlab-org/release-cli:latest - rules: - - if: $CI_COMMIT_TAG # Run this job when a tag is created manually - script: - - echo "Running the release job." - release: - tag_name: $CI_COMMIT_TAG - name: 'Release $CI_COMMIT_TAG' - description: 'Release created using the release-cli.' - -- GitLab