Loading .gitlab-ci.yml +0 −4 Original line number Diff line number Diff line Loading @@ -8,8 +8,6 @@ stages: # List of stages for jobs, and their order of execution build-gcc: # This job runs in the build stage, which runs first. stage: build tags: - build-tag script: - echo "Installing packages" - apt-get update && apt-get install -y gawk gcc git perl-base sed meson ninja-build Loading @@ -23,8 +21,6 @@ build-gcc: # This job runs in the build stage, which runs first. test-cdict: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. tags: - test-tag dependencies: - build-gcc script: Loading Loading
.gitlab-ci.yml +0 −4 Original line number Diff line number Diff line Loading @@ -8,8 +8,6 @@ stages: # List of stages for jobs, and their order of execution build-gcc: # This job runs in the build stage, which runs first. stage: build tags: - build-tag script: - echo "Installing packages" - apt-get update && apt-get install -y gawk gcc git perl-base sed meson ninja-build Loading @@ -23,8 +21,6 @@ build-gcc: # This job runs in the build stage, which runs first. test-cdict: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. tags: - test-tag dependencies: - build-gcc script: Loading