Skip to content

HIVE-27277: GH actions to build and push docker image #2

HIVE-27277: GH actions to build and push docker image

HIVE-27277: GH actions to build and push docker image #2

name: Build and Publish docker images for Hive SNAPSHOT images
on:
schedule:
- cron: "0 10 * * 1"
jobs:
build:
if: github.event_name == 'create' && github.event.ref_type == 'tag' && startsWith(github.event.ref, 'rel/')
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: 'Set up JDK 8'
uses: actions/setup-java@v1
with:
java-version: 8
-
name: Hive version
run: echo "HIVE_VERSION=$(mvn -f "pom.xml" -q help:evaluate -Dexpression=project.version -DforceStdout)" >> $GITHUB_ENV
- name: Tag
run: echo "tag=${{ env.HIVE_VERSION }}" | awk '{print tolower($0)}' >> $GITHUB_ENV
-
name: Hadoop version
run: echo "HADOOP_VERSION=$(mvn -f "pom.xml" -q help:evaluate -Dexpression=hadoop.version -DforceStdout)" >> $GITHUB_ENV
-
name: Tez version
run: echo "TEZ_VERSION=$(mvn -f "pom.xml" -q help:evaluate -Dexpression=tez.version -DforceStdout)" >> $GITHUB_ENV
- name: Build project
run: mvn clean install -DskipTests -Pitests,iceberg -Pdist

Check failure on line 38 in .github/workflows/docker-dev-images.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker-dev-images.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
- name: Temporarily save jar artifact
uses: actions/upload-artifact@v2
with:
name: jar-artifact
path: ./packaging/target/apache-hive-${{ env.HIVE_VERSION }}-bin.tar.gz
retention-days: 1
- uses: actions/download-artifact@v1
with:
name: jar-artifact
path: ./packaging/target/
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Hive Image to docker hub
uses: docker/build-push-action@v4
with:
context: ./packaging/src/docker/
file: ./packaging/src/docker/Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USER }}/hive:${{ env.tag }}
build-args:
|
HIVE_VERSION=${{ env.HIVE_VERSION }}
HADOOP_VERSION=${{ env.HADOOP_VERSION }}
TEZ_VERSION=${{ env.TEZ_VERSION }}
BUILD_ENV=snapshot