From f00a98edca9837452dec67bcc20ba619d69d6a56 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 17 Mar 2022 19:02:12 +0100 Subject: [PATCH] gitlab-ci: rename "build.sh" script to "run-test.sh" It's true, that our gitlab-ci test mostly consists of building NetworkManager. Hence the name of the script was not entirely wrong. But it's not only building. I think "run-test.sh" is a much better name. Rename. --- .gitlab-ci.yml | 12 ++++++------ .gitlab-ci/ci.template | 2 +- .gitlab-ci/{build.sh => run-test.sh} | 0 3 files changed, 7 insertions(+), 7 deletions(-) rename .gitlab-ci/{build.sh => run-test.sh} (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc64355104..9e2a2c31fb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,11 +47,11 @@ variables: # # This is done by running `ci-fairy generate-template` and possibly bump # ".default_tag". - FEDORA_TAG: '2022-03-15.0-9d8288d70d58' - UBUNTU_TAG: '2022-03-15.0-c933c3fced1c' - DEBIAN_TAG: '2022-03-15.0-c933c3fced1c' - CENTOS_TAG: '2022-03-15.0-9d8288d70d58' - ALPINE_TAG: '2022-03-15.0-499639d17df6' + FEDORA_TAG: '2022-03-15.0-1c8fb45999e9' + UBUNTU_TAG: '2022-03-15.0-f7d56c5dcd47' + DEBIAN_TAG: '2022-03-15.0-f7d56c5dcd47' + CENTOS_TAG: '2022-03-15.0-1c8fb45999e9' + ALPINE_TAG: '2022-03-15.0-91803105505b' FEDORA_EXEC: 'bash .gitlab-ci/fedora-install.sh' UBUNTU_EXEC: 'bash .gitlab-ci/debian-install.sh' @@ -622,7 +622,7 @@ alpine:latest@container-clean: .build@template: stage: test script: - - .gitlab-ci/build.sh + - .gitlab-ci/run-test.sh dependencies: [] ################################################################# diff --git a/.gitlab-ci/ci.template b/.gitlab-ci/ci.template index 20ffe286b2..9e6a2c1790 100644 --- a/.gitlab-ci/ci.template +++ b/.gitlab-ci/ci.template @@ -144,7 +144,7 @@ variables: .build@template: stage: test script: - - .gitlab-ci/build.sh + - .gitlab-ci/run-test.sh dependencies: [] ################################################################# diff --git a/.gitlab-ci/build.sh b/.gitlab-ci/run-test.sh similarity index 100% rename from .gitlab-ci/build.sh rename to .gitlab-ci/run-test.sh