Skip to content

Commit

Permalink
Merge pull request #178 from xenit-eu/ALFREDAPI-521-merge-release
Browse files Browse the repository at this point in the history
Alfredapi 521 merge release
  • Loading branch information
codingBenVdS authored Jun 22, 2023
2 parents c397cdc + 3eaca8b commit cd78c8a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ jobs:
name: test-result
path: /home/runner/work/**/build/reports
retention-days: 2
- 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]
Expand All @@ -61,7 +70,7 @@ jobs:
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.head_ref }}
BRANCH_NAME: ${{ github.ref_name }}
with:
arguments: >-
--info -PsigningKeyId=DF8285F0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ public Object execute() {
}, false, true);
}

@Test
public void testDummy() {
logger.debug(
"dummytest: NoRunableMethodExceptionExample: solves race condition of testSearchContextMyPooledTask");
assertEquals(1, 1);
}

@Test
public void testSearchContextMyPooledTask() {
String testName = new Object() {
Expand Down

0 comments on commit cd78c8a

Please sign in to comment.