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.
This commit is contained in:
Thomas Haller 2022-03-17 19:02:12 +01:00
parent 18d0ab14bc
commit f00a98edca
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728
3 changed files with 7 additions and 7 deletions

View file

@ -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: []
#################################################################

View file

@ -144,7 +144,7 @@ variables:
.build@template:
stage: test
script:
- .gitlab-ci/build.sh
- .gitlab-ci/run-test.sh
dependencies: []
#################################################################