File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
modules/s2i/core/artifacts/opt/jboss/container/s2i/core Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ function s2i_core_copy_deployments() {
92
92
local relative_source=$(realpath --relative-to "${S2I_SOURCE_DIR}" "${1}/${S2I_SOURCE_DEPLOYMENTS_DIR}")
93
93
log_info "Copying deployments from $relative_source to ${S2I_TARGET_DEPLOYMENTS_DIR}..."
94
94
for filter in ${S2I_SOURCE_DEPLOYMENTS_FILTER:-*}; do
95
- find "${S2I_SOURCE_DIR}/${relative_source}/" -maxdepth 1 -name "${filter}" | xargs -I '{}' -r cp -Lrv '{}' "${S2I_TARGET_DEPLOYMENTS_DIR}"
95
+ find "${S2I_SOURCE_DIR}/${relative_source}/" -maxdepth 1 -name "${filter}" | xargs -I '{}' -r cp -Lrpv '{}' "${S2I_TARGET_DEPLOYMENTS_DIR}"
96
96
done
97
97
fi
98
98
fi
Original file line number Diff line number Diff line change 1
- # OpenJDK/hotspot only
1
+ # builder only
2
+ @ubi9/openjdk-11
3
+ @ubi9/openjdk-17
2
4
Feature : Openshift OpenJDK-only S2I tests
3
5
Scenario : Check java perf dir owned by jboss (CLOUD-2070)
4
6
Given s2i build https://github.com/jboss-openshift/openshift-quickstarts from undertow-servlet
5
7
Then run jstat -gc 1 1000 1 in container and check its output for S0C
6
8
And run stat --printf="%U %G" /tmp/hsperfdata_jboss/ in container and check its output for jboss root
9
+
10
+ Scenario : Ensure Quarkus CDS doesn't fail due to timestamp mismatch (OPENDJK-1673)
11
+ Given s2i build https://github.com/jerboaa/quarkus-quickstarts from getting-started using quickstart-2.16-s2i-cds
12
+ Then container log should not contain A jar file is not the one used while building the shared archive file
You can’t perform that action at this time.
0 commit comments