Fix the synchronization protocol of the InternalChannelRegistry #2716
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Pull Request Build | |
on: | |
pull_request: | |
branches: | |
- main | |
- 2.x | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.java.continue-on-error == true }} | |
strategy: | |
matrix: | |
java: [ | |
{'version': '8'}, | |
{'version': '11'}, | |
{ | |
'version': '11', | |
'build_opts': '-Dkafka-container-version=latest-kafka-2.8.0 -pl smallrye-reactive-messaging-kafka --also-make', | |
'name': 'Kafka tests against Kafka Broker 2.8.0' | |
}, | |
{ | |
'version': '16', | |
'opts': '--illegal-access=permit' # required for kotlin | |
}, | |
{ | |
'version': '17', | |
'opts': '--illegal-access=permit' # required for kotlin | |
}, | |
{ | |
'version': '11', | |
'build_opts': '-Pslow-flaky-tests', | |
'name': 'Slow and Flaky tests', | |
'continue-on-error': true | |
} | |
] | |
name: Build with Java ${{ matrix.java.version }} ${{ matrix.java.name }} | |
steps: | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
maven- | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java.version }} | |
distribution: temurin | |
- name: Build with Maven | |
env: | |
MAVEN_OPTS: ${{ matrix.java.opts }} | |
run: | | |
mvn -s .github/ci-maven-settings.xml \ | |
-B clean verify -Dtest-containers=true ${{ matrix.java.build_opts }} | |
up_to_date_antora: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: temurin | |
- name: Build with Maven | |
run: | # Fail the build is the antora.yaml becomes out of date | |
mvn -s .github/ci-maven-settings.xml -B install -DskipTests | |
mvn -s .github/ci-maven-settings.xml -B \ | |
-pl documentation scm:check-local-modification \ | |
-Dincludes=src/main/doc/antora.yml |