From c24d525148e39aac96dc2a51ce2b8ad501a0922d Mon Sep 17 00:00:00 2001 From: Maciej Pijanowski Date: Thu, 22 Jul 2021 13:52:17 +0200 Subject: [PATCH] .gitlab-ci.yml: run all stages on local runners MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Pijanowski Signed-off-by: Michał Kopeć --- .gitlab-ci.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 88ebddf2391..51621182b90 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ check_dependencies: PLATFORM: stage: build_rom tags: - - docker + - local script: - git clone https://github.com/pcengines/pce-fw-builder.git /home/coreboot/pce-fw-builder - cd /home/coreboot/pce-fw-builder @@ -56,7 +56,7 @@ check_dependencies: PLATFORM: stage: sign_rom tags: - - docker + - local script: - cd ${RELEASE_DIR} - sha256sum ${PLATFORM}_${CI_COMMIT_REF_NAME}.rom > ${PLATFORM}_${CI_COMMIT_REF_NAME}.SHA256 @@ -74,7 +74,7 @@ check_dependencies: PLATFORM: stage: publish_rom tags: - - docker + - local before_script: - apt-get update - apt-get install curl @@ -140,6 +140,8 @@ regression:apu2: PLATFORM: apu2 CONFIG: apu2 RTE_IP: $RTE_IP_APU2 + tags: + - apu2 build:apu3: @@ -168,6 +170,8 @@ regression:apu3: PLATFORM: apu3 CONFIG: apu3 RTE_IP: $RTE_IP_APU3 + tags: + - apu3 build:apu4: @@ -196,6 +200,8 @@ regression:apu4: PLATFORM: apu4 CONFIG: apu4 RTE_IP: $RTE_IP_APU4 + tags: + - apu4 build:apu5: @@ -224,3 +230,5 @@ regression:apu5: PLATFORM: apu5 CONFIG: apu5 RTE_IP: $RTE_IP_APU5 + tags: + - apu5