Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBalasankar "Balu" C <balasankar@gitlab.com>2022-06-13 20:13:19 +0300
committerBalasankar "Balu" C <balasankar@gitlab.com>2022-06-13 20:14:57 +0300
commitc983342370cbd5dca3484ed08b0adb297e101e4d (patch)
tree708d070e6501398a7cbb2009af95b3a8ebb41813
parent4e84eaf02f3a5403ef44c3f51b8e46c57e24ed02 (diff)
Add a dummy CI job to test FIPS runnertest-fips-runner
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
-rw-r--r--.gitlab-ci.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 916e6dfae..6944878d5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -394,3 +394,20 @@ qa:nightly-praefect-migration-test:
project: gitlab-org/quality/praefect-migration-testing
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule"'
+
+balu-fips-test-job:
+ image: registry.access.redhat.com/ubi8/ubi:8.5
+ before_script:
+ - dnf install -y openssl
+ - echo "Hello World" > test_file
+ script:
+ - which gitlab-runner-helper || whereis gitlab-runner-helper
+ - cat /proc/sys/crypto/fips_enabled
+ - openssl md5 test_file || echo "md5 disabled"
+ needs: []
+ tags:
+ - fips
+ cache:
+ key: 'balu-test-cache'
+ paths:
+ - test_file