Use versionless features #328
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: Test application | |
on: | |
pull_request: | |
branches: [ prod, staging ] | |
jobs: | |
check-files: | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
outputs: | |
canSkip: ${{ steps.Checker.outputs.canSkip }} | |
steps: | |
- name: Get files | |
uses: actions/checkout@v4 | |
- name: Get tools | |
uses: actions/checkout@v4 | |
with: | |
path: tools/ | |
repository: openliberty/guides-common | |
- id: Checker | |
shell: bash | |
run: bash ./tools/pr-checker/checker.sh ${{ github.repository }} ${{ github.event.pull_request.number }} | tee checker.log | |
- id: Lint-Code-Base | |
if: "! github.event.pull_request.head.repo.fork" | |
uses: github/super-linter@latest | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LINTER_RULES_PATH: ./tools/pr-checker/linters/ | |
DEFAULT_BRANCH: prod | |
- name: Summary | |
if: "! github.event.pull_request.head.repo.fork" | |
run: | | |
< ./checker.log tail -n +2; echo "====== Super Linter ======" | |
< ./super-linter.log sed -n '/.*The script has completed.*/,$p' | tail -n +4 | sed 's/.*\(\[[A-Z]\+\]\)/\1/' | |
echo "====== Examine logs in Checker and Super-Linter steps for more details ======" | |
if [ '${{ steps.Checker.outcome }}' != 'success' ] || [ '${{ steps.Lint-Code-Base.outcome }}' != 'success' ]; then exit 1; fi | |
test-app: | |
runs-on: ubuntu-latest | |
needs: [check-files] | |
if: "!contains(needs.check-files.outputs.canSkip, 'true')" | |
defaults: | |
run: | |
working-directory: finish | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'semeru' | |
java-version: 21 | |
- run: unset _JAVA_OPTIONS | |
- name: Run tests | |
run: sudo -E ../scripts/testApp.sh | |
- name: Post tests | |
if: always() | |
run: | | |
logsPath=$(sudo find . -name "console.log" | grep backendServices); | |
sudo cat "$logsPath" | grep Launching | |
logsPath=$(sudo find . -name "console.log" | grep frontendUI); | |
sudo cat "$logsPath" | grep Launching | |
sudo chmod -R a+xr backendServices/target | |
sudo chmod -R a+xr frontendUI/target | |
- name: Archive backend logs if failed | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: BackendServices-logs | |
path: finish/backendServices/target/liberty/wlp/usr/servers/defaultServer/logs/ | |
- name: Archive frontend logs if failed | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: frontendUI-logs | |
path: finish/frontendUI/target/liberty/wlp/usr/servers/defaultServer/logs/ |