Compare commits
No commits in common. "c8-beta-stream-2" and "stream-log4j-2-rhel-8.10.0" have entirely different histories.
c8-beta-st
...
stream-log
0
.gitignore
vendored
0
.gitignore
vendored
11
gating.yaml
Normal file
11
gating.yaml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate_modules
|
||||||
|
subject_type: redhat-module
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: baseos-ci.redhat-module.other.functional}
|
||||||
|
# - !PassingTestCaseRule {test_case_name: baseos-ci.redhat-module.tier1.functional}
|
||||||
|
# - !PassingTestCaseRule {test_case_name: baseos-ci.redhat-module.tier2.functional}
|
||||||
|
# - !PassingTestCaseRule {test_case_name: baseos-ci.redhat-module.tier3.functional}
|
||||||
|
# - !PassingTestCaseRule {test_case_name: baseos-ci.redhat-module.acceptance-tier.functional}
|
@ -33,13 +33,13 @@ data:
|
|||||||
rpms:
|
rpms:
|
||||||
disruptor:
|
disruptor:
|
||||||
buildorder: 10
|
buildorder: 10
|
||||||
ref: stream-log4j-2-rhel-8.8.0
|
ref: stream-log4j-2-rhel-8.10.0
|
||||||
rationale: Dependency of log4j.
|
rationale: Dependency of log4j.
|
||||||
jctools:
|
jctools:
|
||||||
buildorder: 10
|
buildorder: 10
|
||||||
ref: stream-log4j-2-rhel-8.8.0
|
ref: stream-log4j-2-rhel-8.10.0
|
||||||
rationale: Dependency of log4j.
|
rationale: Dependency of log4j.
|
||||||
log4j:
|
log4j:
|
||||||
buildorder: 20
|
buildorder: 20
|
||||||
ref: stream-log4j-2-rhel-8.8.0
|
ref: stream-log4j-2-rhel-8.10.0
|
||||||
rationale: Module API.
|
rationale: Module API.
|
11
plans/Smoke.java
Normal file
11
plans/Smoke.java
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import org.apache.logging.log4j.*;
|
||||||
|
|
||||||
|
public class Smoke
|
||||||
|
{
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
Logger log = LogManager.getLogger(Smoke.class);
|
||||||
|
log.error("Hello from Log4J");
|
||||||
|
System.out.println("SMOKE TEST COMPLETE");
|
||||||
|
}
|
||||||
|
}
|
8
plans/smoke.fmf
Normal file
8
plans/smoke.fmf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
summary: Basic smoke test
|
||||||
|
prepare:
|
||||||
|
how: install
|
||||||
|
package: java-1.8.0-openjdk-devel
|
||||||
|
execute:
|
||||||
|
script:
|
||||||
|
- /usr/lib/jvm/java-1.8.0-openjdk/bin/javac -cp /usr/share/java/log4j/log4j-api.jar plans/Smoke.java
|
||||||
|
- /usr/lib/jvm/java-1.8.0-openjdk/bin/java -cp /usr/share/java/log4j/log4j-api.jar:/usr/share/java/log4j/log4j-core.jar:plans Smoke
|
Loading…
Reference in New Issue
Block a user