[CI] Remove Maven profile full in favour of using docs for all document generation. #1316
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: CI PRs | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: find . -type f -name "*.sh" -exec chmod a+x '{}' \; | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'liberica' | |
- name: Build | |
shell: bash | |
timeout-minutes: 75 | |
run: | | |
./mvnw -s .github/settings.xml -B -Pdocs clean install --no-transfer-progress -T 1C | |
- name: Test Report | |
uses: n-ryu/test-reporter@v0.0.2 | |
if: ${{ success() || failure() }} | |
id: test | |
with: | |
name: Unit Tests | |
path: '**/surefire-reports/*.xml' | |
reporter: java-junit | |
list-tests: failed | |
- name: Print Test Report | |
if: ${{ failure() }} | |
shell: bash | |
run: | | |
echo "::error ::${{ steps.test.outputs.summary }}" | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Trivy vulnerability scanner in repo mode | |
uses: aquasecurity/trivy-action@master | |
with: | |
scan-type: 'fs' | |
ignore-unfixed: true | |
format: 'table' | |
severity: 'CRITICAL,HIGH' | |
- name: 'Scanned' | |
shell: bash | |
run: echo "::info ::Scanned" | |
done: | |
runs-on: ubuntu-latest | |
needs: [ scan, build ] | |
steps: | |
- name: 'Done' | |
shell: bash | |
run: echo "::info ::Done" |