From 97e1f7f53384301db908cbe2df81412d5c9d1eec Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Tue, 18 Mar 2025 17:32:11 -0500 Subject: [PATCH] refactor: only run build pipeline in build environment Since build env is setup for building images, it makes more sense to have all build jobs in that environment. --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2873657..623ec22 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -113,7 +113,7 @@ workflow: build_http_proxy_image: stage: build environment: - name: $ENV + name: build tags: - build variables: @@ -126,7 +126,7 @@ build_http_proxy_image: build_ssh_proxy_image: stage: build environment: - name: $ENV + name: build tags: - build variables: @@ -165,7 +165,7 @@ build_ssh_proxy_image: build_login_image: stage: build environment: - name: $ENV + name: build tags: - build <<: *build_login_image_template @@ -176,7 +176,7 @@ build_login_image: build_ood_image: stage: build environment: - name: $ENV + name: build tags: - build script: -- GitLab