adding release notes for 2.18.0 release (#1458) (#1462) #1879
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: BWC Test Workflow | |
# This workflow is triggered on pull requests to main branch | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
# Job name | |
name: Run BWC Test | |
runs-on: ubuntu-latest | |
steps: | |
# This step uses the setup-java Github action: https://github.com/actions/setup-java | |
- name: Set Up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
# This step uses the checkout Github action: https://github.com/actions/checkout | |
- name: Checkout Branch | |
uses: actions/checkout@v4 | |
- name: Build and run Replication tests | |
run: | | |
echo "Running backwards compatibility tests ..." | |
./gradlew clean release -Dbuild.snapshot=true -x test -x IntegTest | |
./gradlew mixedClusterTask --stacktrace | |
./gradlew fullRestartClusterTask --stacktrace | |
- name: Upload failed logs | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: logs | |
path: | | |
build/testclusters/*ClusterTask*/logs/* | |
build/testclusters/bwcLeader*/logs/* | |
build/testclusters/bwcFollower*/logs/* | |
build/reports/tests/* |