Compare commits
No commits in common. "c8-beta-stream-4" and "c9s" have entirely different histories.
c8-beta-st
...
c9s
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/jaf-2.1.1.tar.gz
|
/jaf-2.1.1.tar.gz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
b41d525d1476addca256d81c228977c8b475bf59 SOURCES/jaf-2.1.1.tar.gz
|
|
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-9
|
||||||
|
decision_contexts:
|
||||||
|
- osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
@ -60,8 +60,8 @@ popd
|
|||||||
%license LICENSE.md NOTICE.md
|
%license LICENSE.md NOTICE.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jan 31 2023 Marian Koncek <mkoncek@redhat.com> - 2.1.1-2
|
* Wed Feb 01 2023 Marián Konček <mkoncek@redhat.com> - 2.1.1-2
|
||||||
- Add major compat version
|
- Reduce dependencies
|
||||||
|
|
||||||
* Tue Jan 17 2023 Marian Koncek <mkoncek@redhat.com> - 2.1.1-1
|
* Tue Jan 17 2023 Marian Koncek <mkoncek@redhat.com> - 2.1.1-1
|
||||||
- Initial build
|
- Initial build
|
15
plans/Smoke.java
Normal file
15
plans/Smoke.java
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import jakarta.activation.DataHandler;
|
||||||
|
import jakarta.activation.DataSource;
|
||||||
|
import jakarta.activation.MimeType;
|
||||||
|
import jakarta.activation.MimeTypeParseException;
|
||||||
|
|
||||||
|
public class Smoke
|
||||||
|
{
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
System.out.println(DataHandler.class.getCanonicalName());
|
||||||
|
System.out.println(DataSource.class.getCanonicalName());
|
||||||
|
System.out.println(MimeType.class.getCanonicalName());
|
||||||
|
System.out.println(MimeTypeParseException.class.getCanonicalName());
|
||||||
|
}
|
||||||
|
}
|
17
plans/smoke.fmf
Normal file
17
plans/smoke.fmf
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
summary: Basic smoke test
|
||||||
|
prepare:
|
||||||
|
how: install
|
||||||
|
package:
|
||||||
|
- java-1.8.0-openjdk-devel
|
||||||
|
- xmvn-tools
|
||||||
|
discover:
|
||||||
|
how: shell
|
||||||
|
tests:
|
||||||
|
- name: /smoke/classpath-import
|
||||||
|
test: |
|
||||||
|
CLASSPATH+=":$(xmvn-resolve jakarta.activation:jakarta.activation-api:2)"
|
||||||
|
export CLASSPATH
|
||||||
|
/usr/lib/jvm/java-1.8.0-openjdk/bin/javac plans/Smoke.java
|
||||||
|
/usr/lib/jvm/java-1.8.0-openjdk/bin/java -cp "${CLASSPATH}:plans" Smoke
|
||||||
|
execute:
|
||||||
|
how: tmt
|
Loading…
Reference in New Issue
Block a user