From 8941783fde01db1dfb7fc32f29ab348de35a6f2a Mon Sep 17 00:00:00 2001 From: Robert Waffen Date: Thu, 11 Apr 2024 10:08:18 +0200 Subject: [PATCH] fix wrong file name of gitlab-ci.yml --- .gitlab-ci.yaml | 96 ------------------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 .gitlab-ci.yaml diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml deleted file mode 100644 index 9ae8e7f..0000000 --- a/.gitlab-ci.yaml +++ /dev/null @@ -1,96 +0,0 @@ ---- -# Example of a CI/CD pipeline for a Puppet module -stages: - - QA🚦 - - Test🚥 - -variables: - RAKE: rake -f /Rakefile - -default: - image: - name: ghcr.io/voxpupuli/vobox:7.29.1-main - entrypoint: [""] - -### QA🚦 -.qa: - stage: QA🚦 - -qa-check: - extends: .qa - script: - - $RAKE check - -qa-lint: - extends: .qa - script: - - $RAKE lint - -qa-metadata_lint: - extends: .qa - script: - - $RAKE metadata_lint - -qa-puppet-strings: - extends: .qa - script: - - $RAKE strings:validate:reference - -qa-rubocop: - extends: .qa - script: - - $RAKE rubocop - -qa-syntax: - extends: .qa - script: - - $RAKE syntax - -qa-gateway: - stage: QA🚦 - image: alpine:latest - script: - - echo "QA Gateway" - variables: - GIT_STRATEGY: none - needs: - - qa-check - - qa-lint - - qa-metadata_lint - - qa-puppet-strings - - qa-rubocop - - qa-syntax - -### Test🚥 -.test: - stage: Test🚥 - needs: - - qa-gateway - -test-unit: - extends: .test - script: - - $RAKE spec - artifacts: - expire_in: "30 days" - when: always - paths: - - "rspec.xml" - reports: - junit: "rspec.xml" - -test-acceptance: - extends: .test - script: - - $RAKE beaker - -test-gateway: - stage: Test🚥 - image: alpine:latest - script: - - echo "Test Gateway" - variables: - GIT_STRATEGY: none - needs: - - test-unit - - test-acceptance