ALFREDAPI-562: Fix search test #509
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: '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: | |
alfred-api-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: 17 | |
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: :alfred-api-interface:build :alfred-api-interface:javadoc | |
- name: Unit test REST API | |
uses: gradle/[email protected] | |
with: | |
arguments: --info :alfred-api-rest:test | |
- name: Publish | |
if: ${{ startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/heads/release') }}" | |
uses: gradle/[email protected] | |
with: | |
arguments: --info -PsigningKeyId=CDE3528F :alfred-api-interface:publish | |
alfred-api-impl: | |
strategy: | |
matrix: | |
alfresco_version: [ 231, 232 ] | |
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: 17 | |
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 and test | |
uses: gradle/[email protected] | |
with: | |
arguments: >- | |
--info | |
:alfred-api-impl:alfred-api-impl-${{ matrix.alfresco_version }}:test | |
:alfred-api-integrationtests-client: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=CDE3528F | |
:alfresco:${{ matrix.alfresco_version }}:publish |