This is an automated email from the ASF dual-hosted git repository.
robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 484447d5d5 ARTEMIS 1815: add example missed previously to
run-standard-examples.sh, plus tweak comment to make diffing the scripts easier
484447d5d5 is described below
commit 484447d5d5fa46b6d4e791028127fd30b687553f
Author: Robbie Gemmell <[email protected]>
AuthorDate: Tue Sep 13 09:48:02 2022 +0100
ARTEMIS 1815: add example missed previously to run-standard-examples.sh,
plus tweak comment to make diffing the scripts easier
---
artemis-distribution/src/test/scripts/run-examples.sh | 1 +
artemis-distribution/src/test/scripts/run-standard-examples.sh | 8 +++-----
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/artemis-distribution/src/test/scripts/run-examples.sh
b/artemis-distribution/src/test/scripts/run-examples.sh
index f1242fd30e..ce6d55f7c2 100755
--- a/artemis-distribution/src/test/scripts/run-examples.sh
+++ b/artemis-distribution/src/test/scripts/run-examples.sh
@@ -29,6 +29,7 @@ export TEST_TARGET="./target"
. ./installHome.sh
cd $ARTEMIS_HOME/examples/features/standard/
+
cd auto-closeable; mvn verify; cd ..
cd broker-plugin; mvn verify; cd ..
cd browser; mvn verify; cd ..
diff --git a/artemis-distribution/src/test/scripts/run-standard-examples.sh
b/artemis-distribution/src/test/scripts/run-standard-examples.sh
index eba2af7915..c1853a2d52 100755
--- a/artemis-distribution/src/test/scripts/run-standard-examples.sh
+++ b/artemis-distribution/src/test/scripts/run-standard-examples.sh
@@ -16,7 +16,7 @@
# specific language governing permissions and limitations
# under the License.
-# This script will run all the examples on the distribution
+# This script will run all the 'standard' examples on the distribution
rm -rf target
mkdir target
@@ -46,6 +46,7 @@ cd divert; mvn verify; cd ..
cd durable-subscription; mvn verify; cd ..
cd embedded; mvn verify; cd ..
cd embedded-simple; mvn verify; cd ..
+cd exclusive-queue; mvn verify; cd ..
cd expiry; mvn verify; cd ..
cd http-transport; mvn verify; cd ..
cd instantiate-connection-factory; mvn verify; cd ..
@@ -56,10 +57,7 @@ cd interceptor-mqtt; mvn verify; cd ..
cd jms-bridge; mvn verify; cd ..
cd jmx; mvn verify; cd ..
cd jmx-ssl; mvn verify; cd ..
-
-# too big for most CI machines
-#cd large-message; mvn verify; cd ..
-
+#cd large-message; mvn verify; cd .. # too big for most CI machines, keeping
it out
cd last-value-queue; mvn verify; cd ..
cd management; mvn verify; cd ..
cd management-notifications; mvn verify; cd ..