Changed all XML schema locations from http to htpps for security reas… #3465
Workflow file for this run
This file contains hidden or 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: Helix PR CI | |
| on: | |
| pull_request: | |
| branches: [ master, metaclient, ApplicationClusterManager] # TODO: remove side branch | |
| paths-ignore: | |
| - '.github/**' | |
| - 'helix-front/**' | |
| - '**/*.md' | |
| jobs: | |
| PR_CI: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 11 | |
| - name: Delete frontend-maven-plugin dir | |
| run: rm -rf .m2\repository\com\github\eirslett | |
| - name: Build with Maven | |
| run: mvn clean install -Dmaven.test.skip.exec=true -DretryFailedDeploymentCount=5 | |
| - name: Run All Tests | |
| run: mvn -q -fae test | |
| - name: Print Tests Results | |
| run: .github/scripts/printTestResult.sh | |
| if: ${{ success() || failure() }} |