You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2021/12/18 00:11:26 UTC

[iceberg] branch master updated: Build: Publish snapshot packages for all known versions (#3751)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new e9d2351  Build: Publish snapshot packages for all known versions (#3751)
e9d2351 is described below

commit e9d23514ac0ae822e57f7e6ea1f3ba8243c3b3d9
Author: Rafael Acevedo <ra...@incognia.com>
AuthorDate: Fri Dec 17 21:11:16 2021 -0300

    Build: Publish snapshot packages for all known versions (#3751)
    
    Currently, only the default versions are being published to the
    snapshots repo (e.g only spark 3.2). In order to allow testing of other
    versions, we should publish packages all supported versions of spark,
    flink and hive.
---
 .github/workflows/publish-snapshot.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml
index 917c180..241ce4a 100644
--- a/.github/workflows/publish-snapshot.yml
+++ b/.github/workflows/publish-snapshot.yml
@@ -39,4 +39,4 @@ jobs:
           java-version: 8
       - run: |
           ./gradlew printVersion
-          ./gradlew publishApachePublicationToMavenRepository -PmavenUser=${{ secrets.NEXUS_USER }} -PmavenPassword=${{ secrets.NEXUS_PW }}
+          ./gradlew -DflinkVersions=1.12,1.13,1.14 -DsparkVersions=2.4,3.0,3.1,3.2 -DhiveVersions=2,3 publishApachePublicationToMavenRepository -PmavenUser=${{ secrets.NEXUS_USER }} -PmavenPassword=${{ secrets.NEXUS_PW }}