Update docker.io/alfresco/alfresco-activemq Docker tag to v5.18.6 #598
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: 'Integration testing' | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
integration-testing: | |
runs-on: ubuntu-latest-4-cores | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Install Helm | |
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4 | |
- name: Install kind | |
uses: helm/kind-action@dda0770415bac9fc20092cacbc54aa298604d140 # v1.8.0 | |
with: | |
install_only: true | |
- uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Check | |
working-directory: integration-testing | |
run: ./gradlew check -i | |
- name: Upload Artifact | |
if: success() || failure() | |
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4 | |
with: | |
name: test-result | |
path: /home/runner/work/**/build/reports | |
retention-days: 2 |