From a101be850fca4ddc06078f151b15e00db0e29c04 Mon Sep 17 00:00:00 2001 From: Fabrice Gangler <fabrice.gangler@adullact.org> Date: Wed, 5 Jun 2024 11:14:58 +0200 Subject: [PATCH] ci: remove an unnecessary job --- .gitlab/ci/job.linters.gitlab-ci.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.gitlab/ci/job.linters.gitlab-ci.yml b/.gitlab/ci/job.linters.gitlab-ci.yml index 636487b..f33f509 100644 --- a/.gitlab/ci/job.linters.gitlab-ci.yml +++ b/.gitlab/ci/job.linters.gitlab-ci.yml @@ -1,6 +1,5 @@ --- #### LINTER ###################################################################################################### -# Vagrant-Validate ---> Vagrantfile linter # Docker-Compose ---> docker-compose.yml files linter # Dotenv ---> .env files linter ---> TODO fixme # Yamllint ---> Yaml files linter @@ -8,32 +7,6 @@ # ShellCheck ---> shell scripts linter ################################################################################################################## -############################################################### -# Vagrant https://www.vagrantup.com/docs/cli/validate -# --> a CI job that will validate Vagrantfile -############################################################### -Vagrantfile_linter: - stage: linter - needs: - - php8.1_linter - rules: - - if: $CI_PIPELINE_SOURCE == "push" -# when: manual -# allow_failure: true - image: debian:buster-slim - variables: - vagrant_version: "2.2.19" - before_script: - - apt-get update - - apt-get -y --no-install-recommends install wget ca-certificates - - wget --quiet "https://releases.hashicorp.com/vagrant/${vagrant_version}/vagrant_${vagrant_version}_x86_64.deb" - - dpkg -i "vagrant_${vagrant_version}_x86_64.deb" - - vagrant --version - script: - - cd "${CI_PROJECT_DIR}/documentation/developer/vagrant_prototype/vagrant_tajine_ubuntu-22.04" - - vagrant validate --ignore-provider -# - VAGRANT_LOG=info vagrant validate --ignore-provider - ############################################################### # Hadolint https://github.com/hadolint/hadolint # https://hadolint.github.io/hadolint/ -- GitLab