Add FORCE_COLOR

This commit is contained in:
2024-04-09 22:23:36 -04:00
parent 171fe86d5f
commit d69b5ea01a

View File

@@ -11,13 +11,6 @@ workflow:
stages: stages:
- build - build
variables:
ACTION:
description: "Action to perform for the pipeline."
value: "build-image"
options:
- "build-image"
build-image: build-image:
stage: build stage: build
image: image:
@@ -25,8 +18,6 @@ build-image:
entrypoint: [""] entrypoint: [""]
services: services:
- docker:dind - docker:dind
rules:
- if: $ACTION == "build-image"
parallel: parallel:
matrix: matrix:
- RECIPE: - RECIPE:
@@ -38,6 +29,7 @@ build-image:
DOCKER_TLS_VERIFY: 1 DOCKER_TLS_VERIFY: 1
DOCKER_CERT_PATH: $DOCKER_TLS_CERTDIR/client DOCKER_CERT_PATH: $DOCKER_TLS_CERTDIR/client
RUST_LOG_STYLE: always RUST_LOG_STYLE: always
FORCE_COLOR: 1
before_script: before_script:
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash - curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
- export COSIGN_PRIVATE_KEY=$(cat .secure_files/cosign.key) - export COSIGN_PRIVATE_KEY=$(cat .secure_files/cosign.key)