We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd3b0fa commit ad0774eCopy full SHA for ad0774e
scripts/run_no_prep_tests.sh
@@ -47,9 +47,14 @@ then
47
--no-transfer-progress && \
48
if git status --porcelain | grep .; then git --no-pager diff; exit 1; fi
49
else
50
+ # Until we resolve https://github.com/slackapi/java-slack-sdk/issues/892, most of the tests can fail with JDK 17+
51
+ # That's why we install jar files locally and run only the tests that work with JDK 17+
52
+ ./mvnw ${MAVEN_OPTS} install \
53
+ '-Dmaven.test.skip=true' \
54
+ -pl !bolt-quarkus-examples \
55
+ && \
56
./mvnw ${MAVEN_OPTS} \
- clean \
- test-compile \
57
+ test -pl bolt-micronaut \
58
'-Dtest=test_locally.**.*Test' -Dsurefire.failIfNoSpecifiedTests=false test ${CI_OPTIONS} \
59
-DfailIfNoTests=false \
60
-Dhttps.protocols=TLSv1.2 \
0 commit comments