Use pipeline credentials for all tests

This commit is contained in:
Vivek Kumar Dutta 2024-02-22 10:02:01 +05:30
parent c26fa5d295
commit 6e8d850da7
2 changed files with 4 additions and 2 deletions

View file

@ -54,6 +54,7 @@ run_libbbfdm_api_functional_test:
image: ${COMMON_IMAGE}
allow_failure: false
script:
- "./gitlab-ci/pipeline_setup.sh"
- "./gitlab-ci/install-dependencies.sh"
- "./gitlab-ci/setup.sh"
- "./gitlab-ci/functional-api-test.sh"
@ -68,6 +69,7 @@ run_libbbfdm_functional_test:
image: ${COMMON_IMAGE}
allow_failure: false
script:
- "./gitlab-ci/pipeline_setup.sh"
- "./gitlab-ci/install-dependencies.sh"
- "./gitlab-ci/setup.sh"
- "./gitlab-ci/functional-test.sh"
@ -82,6 +84,7 @@ run_libbbfdm_memory_test:
image: ${COMMON_IMAGE}
allow_failure: false
script:
- "./gitlab-ci/pipeline_setup.sh"
- "./gitlab-ci/install-dependencies.sh"
- "./gitlab-ci/setup.sh"
- "./gitlab-ci/memory-test.sh"
@ -96,6 +99,7 @@ run_bbfd_functional_test:
image: ${COMMON_IMAGE}
allow_failure: false
script:
- "./gitlab-ci/pipeline_setup.sh"
- "./gitlab-ci/install-dependencies.sh"
- "./gitlab-ci/setup.sh"
- "./gitlab-ci/bbfdmd-functional-test.sh"

View file

@ -2,8 +2,6 @@
echo "# Preparation script ..."
./gitlab-ci/pipeline_setup.sh
# link '/bin/sh' to bash instead of dash
ln -sf bash /bin/sh