Backport for 2.x #1481
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: Security tests | |
# This workflow is triggered on pull requests to main branch | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
# Job name | |
name: Build and Run Security tests | |
runs-on: ubuntu-latest | |
steps: | |
# This step uses the setup-java Github action: https://github.com/actions/setup-java | |
- name: Set Up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
# 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: | | |
ls -al src/test/resources/security/plugin | |
./gradlew clean release -Dbuild.snapshot=true -PnumNodes=1 -Psecurity=true | |
- name: Upload failed logs | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: logs | |
path: | | |
build/testclusters/integTest-*/logs/* | |
build/testclusters/leaderCluster-*/logs/* | |
build/testclusters/followCluster-*/logs/* | |
- name: Create Artifact Path | |
run: | | |
mkdir -p cross-cluster-replication-artifacts | |
cp ./build/distributions/*.zip cross-cluster-replication-artifacts | |
- name: Uploads coverage | |
with: | |
fetch-depth: 2 | |
uses: codecov/[email protected] |