This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release22.01 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release22.01 by this push: new f616bb1fd2 Improved: GH Actions and Buildbot Builders are not consistent (INFRA-23076) f616bb1fd2 is described below commit f616bb1fd2bc57ddae3a11c6ddfc332b05dc8312 Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Mon Apr 18 08:53:31 2022 +0200 Improved: GH Actions and Buildbot Builders are not consistent (INFRA-23076) It's now 2 weeks that INFRA-23076 is open, so like 3 weeks that BuildBot is not working for OFBiz at all. So far I did not run the integration tests on GH because * we have it on BuildBot * it's complicated to show the results Hopefully BuildBot will soon run the OFBiz builds again. But it does not hurt to run the integration tests on GH, even w/o the results, because at least it's easier than running them for each commit locally (takes time) and we can run them locally once we know there is a problem demonstrated with GH actions. --- .github/workflows/gradle.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yaml b/.github/workflows/gradle.yaml index 84db4f41ba..00a322495f 100644 --- a/.github/workflows/gradle.yaml +++ b/.github/workflows/gradle.yaml @@ -38,5 +38,5 @@ jobs: java-version: 1.8 - name: Grant execute permission for gradlew run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew pullAllPluginsSource check + - name: Builds with Gradle, checks style and run integration tests (just to know if they pass) + run: ./gradlew pullAllPluginsSource check loadAll testIntegration