Compare commits

...

No commits in common. "c8s" and "c8-beta" have entirely different histories.
c8s ... c8-beta

8 changed files with 2 additions and 51 deletions

3
.gitignore vendored
View File

@ -1,2 +1 @@
/pcm-202107.tar.gz
/pcm-202211.tar.gz
SOURCES/pcm-202211.tar.gz

1
.pcm.metadata Normal file
View File

@ -0,0 +1 @@
d22461c61423ffa55d8c8a69be311bf2bb0a00e0 SOURCES/pcm-202211.tar.gz

View File

@ -1,11 +0,0 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

View File

@ -1 +0,0 @@
SHA512 (pcm-202211.tar.gz) = 7c45b322222c936641a4da7db8ebb00253d6500b68232b511c141031e33b0a74e18907c7914b03eab3ef14910ed3e548755c60c92f0c86e80ea022270defd570

View File

@ -1,12 +0,0 @@
#!/bin/bash
# fail the whole test set if any of the command pipelines fail
set -ex
# when running this in 1minutetip the PATH must be specified to execute
# in the local directory.
echo "Setting path to local directory"
PATH=$PATH:$(pwd)
# simple version test
version.sh

View File

@ -1,9 +0,0 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- simple:
dir: . # switch to subfolder. This parameter is REQUIRED, use `dir: .` for current folder
run: ./run_tests.sh # this is your test command, its exit code is the outcome of the test

View File

@ -1,16 +0,0 @@
#!/bin/bash
#
# Thermald is a systemd unit file that requires specific hardware and
# firmware. As such it is difficult to test in an automated fashion.
# fail the whole test if any of the command pipelines below fails
set -ex
rpmversion=$(rpm -q --queryformat '%{VERSION}' pcm)
if [ "$rpmversion" == "package pcm is not installed" ]; then
echo "pcm package not installed"
exit 1
fi
# if we get here, it's OK