diff options
author | Thomas White <taw@physics.org> | 2023-09-19 14:37:40 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2023-09-19 14:37:40 +0200 |
commit | a7b033f6c8c840da2cc0760e5e5a60e1689a708b (patch) | |
tree | 75eb7adfa288a9ca69dc29b8f2349b7d35f06836 | |
parent | a67cd841125dbe1a12dd16282014c6379dac92ea (diff) |
CI: Download only the required artifacts for each job
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db7e62e4..b7600212 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,6 +38,7 @@ build-and-test-minimal: build_container_image: stage: build_container + dependencies: [] only: - master image: @@ -117,6 +118,7 @@ build-native-macos: build-brew-macos: stage: test_brew + dependencies: [] tags: - macOS variables: @@ -157,6 +159,8 @@ build-centos7: build-deploy-local-maxwell: tags: - maxwell + dependencies: + - build-centos7 variables: GIT_STRATEGY: clone SECURE_FILES_DOWNLOAD_PATH: './downloads' @@ -174,6 +178,8 @@ build-deploy-local-maxwell: deploy-remote-maxwell: stage: deploy + dependencies: + - build-centos7 image: centos:centos7 variables: GIT_STRATEGY: none |