Fokko commented on code in PR #10386:
URL: https://github.com/apache/iceberg/pull/10386#discussion_r1621960019


##########
.github/workflows/api-binary-compatibility.yml:
##########
@@ -17,45 +17,17 @@
 # under the License.
 #
 
-name: "API Binary Compatibility Checks"
-on:
-  push:
-    branches:
-      - 'main'
-      - '0.**'
-    tags:
-      - 'apache-iceberg-**'
-  pull_request:
-    paths:
-      - 'api/**'
-      - '.palantir/revapi.yml'
-
-concurrency:
-  group: ${{ github.workflow }}-${{ github.ref }}
-  cancel-in-progress: ${{ github.event_name == 'pull_request' }}
+name: "API Compatibility Checks"
+on: pull_request
 
 jobs:
   revapi:
     runs-on: ubuntu-22.04
     steps:
       - uses: actions/checkout@v4
-        with:
-          # fetch-depth of zero ensures that the tags are pulled in and we're 
not in a detached HEAD state
-          # revapi depends on the tags, specifically the tag from git 
describe, to find the relevant override
-          # in the .palantir/revapi.yml file
-          #
-          # See https://github.com/actions/checkout/issues/124
-          fetch-depth: 0
       - uses: actions/setup-java@v4
         with:
           distribution: zulu
-          java-version: 11
-      - run: |
-          echo "Using the old version tag, as per git describe, of $(git 
describe)";
-      - run: ./gradlew revapi --rerun-tasks
-      - uses: actions/upload-artifact@v4
-        if: failure()
-        with:
-          name: test logs
-          path: |
-            **/build/testlogs
+          java-version: 8
+      - run: ./gradlew -DallVersions build -x test -x javadoc -x 
integrationTest

Review Comment:
   I think the following command should also do the trick:
   ```suggestion
         - run: ./gradlew publishToMavenLocal
   ```
   This won't run spotless, open-api checker, etc, speeding up the CI.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to