Skip to content
Snippets Groups Projects
Commit c8e213a6 authored by Jens Steidl's avatar Jens Steidl :baby_chick:
Browse files

- fix ci job: new plugin call, unset bash pipefail option

parent 5e4dfe8f
No related branches found
No related tags found
No related merge requests found
Pipeline #5595 passed
...@@ -130,7 +130,11 @@ test-install-debian-job: ...@@ -130,7 +130,11 @@ test-install-debian-job:
script: script:
- apt update - apt update
- apt install -y ./${CI_PROJECT_NAME}*.deb - apt install -y ./${CI_PROJECT_NAME}*.deb
- java -jar /usr/share/java/XmlFormatValidationPlugin.jar # unset bash pipefail option
- set +o pipefail
- java -cp /usr/share/java/xml_plugin4rosetta/*:/usr/share/java/commons-cli.jar org.slub.rosetta.dps.repository.plugin.XmlFormatValidationPlugin | grep "invalid usage"
# restore bash pipefail option
- set -o pipefail
test-install-ubuntu-job: test-install-ubuntu-job:
stage: test-package stage: test-package
...@@ -142,5 +146,9 @@ test-install-ubuntu-job: ...@@ -142,5 +146,9 @@ test-install-ubuntu-job:
- "docker" - "docker"
script: script:
- apt update - apt update
- apt install -y ./${CI_PROJECT_NAME}*.deb - apt install -y grep ./${CI_PROJECT_NAME}*.deb
- java -jar /usr/share/java/XmlFormatValidationPlugin.jar # unset bash pipefail option
\ No newline at end of file - set +o pipefail
- java -cp /usr/share/java/xml_plugin4rosetta/*:/usr/share/java/commons-cli.jar org.slub.rosetta.dps.repository.plugin.XmlFormatValidationPlugin | grep "invalid usage"
# restore bash pipefail option
- set -o pipefail
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment