release-5.x [Update] version for release-5.0.4 #523
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: 'Continuous Integration' | |
on: | |
push: | |
workflow_dispatch: | |
env: | |
ALFRESCO_NEXUS_USERNAME: ${{ secrets.ALFRESCO_NEXUS_USERNAME }} | |
ALFRESCO_NEXUS_PASSWORD: ${{ secrets.ALFRESCO_NEXUS_PASSWORD }} | |
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.MAVEN_CENTRAL_GPG_KEY }} | |
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.MAVEN_CENTRAL_GPG_PASSWORD }} | |
ORG_GRADLE_PROJECT_sonatype_username: ${{ secrets.SONATYPE_S01_USERNAME }} | |
ORG_GRADLE_PROJECT_sonatype_password: ${{ secrets.SONATYPE_S01_PASSWORD }} | |
BRANCH_NAME: ${{ github.ref_name }} | |
jobs: | |
apix-interface: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: temurin | |
- name: Login to Docker | |
uses: docker/login-action@v2 | |
with: | |
registry: private.docker.xenit.eu | |
username: ${{ secrets.CLOUDSMITH_USER }} | |
password: ${{ secrets.CLOUDSMITH_APIKEY }} | |
- name: Build interface # Execute before integration testing to catch errors early | |
uses: gradle/[email protected] | |
with: | |
arguments: :apix-interface:build :apix-interface:javadoc | |
- name: Unit test REST API | |
uses: gradle/[email protected] | |
with: | |
arguments: --info :apix-rest-v1:test | |
- name: Publish | |
if: ${{ startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/heads/release') }}" | |
uses: gradle/[email protected] | |
with: | |
arguments: --info -PsigningKeyId=DF8285F0 :apix-interface:publish | |
apix-impl: | |
strategy: | |
matrix: | |
alfresco_version: [ 70, 71, 72, 73, 74 ] | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: temurin | |
- name: Login to Docker | |
uses: docker/login-action@v2 | |
with: | |
registry: private.docker.xenit.eu | |
username: ${{ secrets.CLOUDSMITH_USER }} | |
password: ${{ secrets.CLOUDSMITH_APIKEY }} | |
- name: Install Docker Compose | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose | |
- name: Build and test | |
uses: gradle/[email protected] | |
with: | |
arguments: >- | |
--info | |
:apix-impl:apix-impl-${{ matrix.alfresco_version }}:test | |
:apix-integrationtests:alfresco:${{ matrix.alfresco_version }}:integrationTest | |
- name: Publish Test Report | |
uses: mikepenz/[email protected] | |
if: success() || failure() | |
with: | |
check_name: "test-reports-${{ matrix.alfresco_version }}" | |
report_paths: '**/build/test-results/**/TEST-*.xml' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
detailed_summary: true | |
- name: Publish | |
if: ${{ startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/heads/release') }}" | |
uses: gradle/[email protected] | |
with: | |
arguments: >- | |
--info -PsigningKeyId=DF8285F0 | |
:alfresco:${{ matrix.alfresco_version }}:publish |