From 2624cbe5f2bae53d46f2b350700d5ddbc37abd31 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 25 Feb 2022 15:06:51 -0500 Subject: [PATCH] gitlab-ci: remove minimum jobs Minimum build support really only works with `mindeps` in practice. Remove the `minimum` jobs. --- .gitlab-ci.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6ad2ef7..f012049 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -100,30 +100,6 @@ audit-newest:build: needs: - cache-newest:prep -minimum:build: - extends: - - .rust_minimum - - .cargo_build_job - - .cargo_build_tags - - .cargo_build_artifacts - - .run_automatically - dependencies: - - cache-newest:prep - needs: - - cache-newest:prep - -minimum:test: - extends: - - .rust_minimum - - .cargo_test_job - - .cargo_build_tags - - .cargo_test_artifacts - - .run_automatically - dependencies: - - minimum:build - needs: - - minimum:build - stable:build: extends: - .rust_stable -- GitLab