mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	Compare commits
	
		
			11 Commits
		
	
	
		
			25.3.0.63
			...
			hack-build
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | a99e5cdde9 | ||
|  | 7bc6dd142b | ||
|  | 6cbd2d7d50 | ||
|  | 1786cbec99 | ||
|  | e16a53a23e | ||
|  | 21fb85f2a9 | ||
|  | 7dfd41997a | ||
|  | 6374aa30d6 | ||
|  | ed8bdc87da | ||
|  | 5b8d758947 | ||
|  | ed3f170d05 | 
							
								
								
									
										108
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										108
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							| @@ -38,7 +38,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Prepare maven cache and check compilation" |       - name: "Prepare maven cache and check compilation" | ||||||
| @@ -58,7 +60,7 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/veracode@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/veracode@v1.35.2 | ||||||
| @@ -80,8 +82,8 @@ jobs: | |||||||
|     steps: |     steps: | ||||||
|       - uses: Alfresco/ya-pmd-scan@v2.0.5 |       - uses: Alfresco/ya-pmd-scan@v2.0.5 | ||||||
|  |  | ||||||
|   all_unit_tests_suite: |   core_datamodel_tests: | ||||||
|     name: "Core, Data-Model, Repository - AllUnitTestsSuite - Build and test" |     name: "Core, Data-Model - Build and test" | ||||||
|     runs-on: ubuntu-latest |     runs-on: ubuntu-latest | ||||||
|     needs: [prepare] |     needs: [prepare] | ||||||
|     if: > |     if: > | ||||||
| @@ -92,13 +94,35 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Run tests" |       - name: "Run tests" | ||||||
|         run: | |         run: mvn -B test -pl core,data-model -am -DfailIfNoTests=false | ||||||
|           mvn -B test -pl core,data-model -am -DfailIfNoTests=false |       - name: "Clean Maven cache" | ||||||
|           mvn -B test -pl "repository,mmt" -am "-Dtest=AllUnitTestsSuite,AllMmtUnitTestSuite" -DfailIfNoTests=false |         run: bash ./scripts/ci/cleanup_cache.sh | ||||||
|  |  | ||||||
|  |   all_unit_tests_suite: | ||||||
|  |     name: "Repository - AllUnitTestsSuite - Build and test" | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     needs: [prepare] | ||||||
|  |     if: > | ||||||
|  |       !contains(github.event.head_commit.message, '[skip repo]') && | ||||||
|  |       !contains(github.event.head_commit.message, '[skip tests]') && | ||||||
|  |       !contains(github.event.head_commit.message, '[force') | ||||||
|  |     steps: | ||||||
|  |       - uses: actions/checkout@v3 | ||||||
|  |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|  |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|  |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|  |       - name: "Init" | ||||||
|  |         run: bash ./scripts/ci/init.sh | ||||||
|  |       - name: "Run tests" | ||||||
|  |         run: mvn -B test -pl repository,mmt  -am -Dtest=AllUnitTestsSuite,AllMmtUnitTestSuite -DfailIfNoTests=false | ||||||
|       - name: "Clean Maven cache" |       - name: "Clean Maven cache" | ||||||
|         run: bash ./scripts/ci/cleanup_cache.sh |         run: bash ./scripts/ci/cleanup_cache.sh | ||||||
|  |  | ||||||
| @@ -130,7 +154,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Build" |       - name: "Build" | ||||||
|         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} |         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} | ||||||
|         run: | |         run: | | ||||||
| @@ -159,12 +185,14 @@ jobs: | |||||||
|     strategy: |     strategy: | ||||||
|       fail-fast: false |       fail-fast: false | ||||||
|       matrix: |       matrix: | ||||||
|         version: ['10.2.18', '10.4', '10.5'] |         version: ["10.2.18", "10.4", "10.5"] | ||||||
|     steps: |     steps: | ||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: Run MariaDB ${{ matrix.version }} database |       - name: Run MariaDB ${{ matrix.version }} database | ||||||
| @@ -191,7 +219,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Run MariaDB 10.6 database" |       - name: "Run MariaDB 10.6 database" | ||||||
| @@ -218,7 +248,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Run MySQL 8 database" |       - name: "Run MySQL 8 database" | ||||||
| @@ -244,7 +276,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Run PostgreSQL 13.12 database" |       - name: "Run PostgreSQL 13.12 database" | ||||||
| @@ -270,7 +304,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Run PostgreSQL 14.9 database" |       - name: "Run PostgreSQL 14.9 database" | ||||||
| @@ -296,7 +332,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Run PostgreSQL 15.4 database" |       - name: "Run PostgreSQL 15.4 database" | ||||||
| @@ -320,7 +358,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Run ActiveMQ" |       - name: "Run ActiveMQ" | ||||||
| @@ -361,17 +401,19 @@ jobs: | |||||||
|             compose-profile: with-transform-core-aio |             compose-profile: with-transform-core-aio | ||||||
|           - testSuite: SearchTestSuite |           - testSuite: SearchTestSuite | ||||||
|             compose-profile: default |             compose-profile: default | ||||||
|             mvn-options: '-Dindex.subsystem.name=solr6' |             mvn-options: "-Dindex.subsystem.name=solr6" | ||||||
|           - testSuite: MTLSTestSuite |           - testSuite: MTLSTestSuite | ||||||
|             compose-profile: with-mtls-transform-core-aio |             compose-profile: with-mtls-transform-core-aio | ||||||
|             mtls: true |             mtls: true | ||||||
|             disabledHostnameVerification: false |             disabledHostnameVerification: false | ||||||
|             mvn-options: '-Dencryption.ssl.keystore.location=${CI_WORKSPACE}/keystores/alfresco/alfresco.keystore -Dencryption.ssl.truststore.location=${CI_WORKSPACE}/keystores/alfresco/alfresco.truststore' |             mvn-options: "-Dencryption.ssl.keystore.location=${CI_WORKSPACE}/keystores/alfresco/alfresco.keystore -Dencryption.ssl.truststore.location=${CI_WORKSPACE}/keystores/alfresco/alfresco.truststore" | ||||||
|     steps: |     steps: | ||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Set transformers tag" |       - name: "Set transformers tag" | ||||||
| @@ -442,7 +484,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Build" |       - name: "Build" | ||||||
|         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} |         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} | ||||||
|         run: | |         run: | | ||||||
| @@ -480,7 +524,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Init" |       - name: "Init" | ||||||
|         run: bash ./scripts/ci/init.sh |         run: bash ./scripts/ci/init.sh | ||||||
|       - name: "Run Postgres 15.4 database" |       - name: "Run Postgres 15.4 database" | ||||||
| @@ -510,7 +556,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Build" |       - name: "Build" | ||||||
|         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} |         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} | ||||||
|         run: | |         run: | | ||||||
| @@ -542,7 +590,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Build" |       - name: "Build" | ||||||
|         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} |         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} | ||||||
|         run: | |         run: | | ||||||
| @@ -570,7 +620,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Build" |       - name: "Build" | ||||||
|         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} |         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} | ||||||
|         run: | |         run: | | ||||||
| @@ -605,7 +657,7 @@ jobs: | |||||||
|   ags_start_api_explorer: |   ags_start_api_explorer: | ||||||
|     name: "Test Tomcat deployment of api explorer" |     name: "Test Tomcat deployment of api explorer" | ||||||
|     runs-on: ubuntu-latest |     runs-on: ubuntu-latest | ||||||
|     needs: [ prepare ] |     needs: [prepare] | ||||||
|     if: > |     if: > | ||||||
|       (((github.ref_name == 'master' || startsWith(github.ref_name, 'release/') || github.event_name == 'pull_request' ) && |       (((github.ref_name == 'master' || startsWith(github.ref_name, 'release/') || github.event_name == 'pull_request' ) && | ||||||
|       !contains(github.event.head_commit.message, '[skip ags]')) || |       !contains(github.event.head_commit.message, '[skip ags]')) || | ||||||
| @@ -616,7 +668,9 @@ jobs: | |||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v1.35.2 | ||||||
|       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.35.2 |       - uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@hack-build-cache | ||||||
|  |         with: | ||||||
|  |           build-cache: "true" | ||||||
|       - name: "Build" |       - name: "Build" | ||||||
|         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} |         timeout-minutes: ${{ fromJSON(env.GITHUB_ACTIONS_DEPLOY_TIMEOUT) }} | ||||||
|         run: | |         run: | | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user