Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CELEBORN-1900] docker images #3152

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build and Push Celeborn Docker Images

on:
release:
types: [published]
workflow_dispatch:
inputs:
celeborn_version:
description: 'Celeborn version (e.g., 0.3.0)'
required: false # Making it optional for release triggers
type: string

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Set Celeborn Version
id: set_version
run: |
if [[ "${{ github.event_name }}" == "release" ]]; then
VERSION="${{ github.event.release.tag_name }}"
echo "VERSION=${VERSION#v}" >> $GITHUB_OUTPUT
else
VERSION="${{ github.event.inputs.celeborn_version }}"
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT
fi

- name: Download Celeborn Release
run: |
VERSION="${{ steps.extract_version.outputs.VERSION }}"
wget https://downloads.apache.org/celeborn/celeborn-${VERSION}/apache-celeborn-${VERSION}-bin.tgz
tar -xzf apache-celeborn-${VERSION}-bin.tgz

- name: Build and Push
run: |
VERSION="${{ steps.extract_version.outputs.VERSION }}"
cd apache-celeborn-${VERSION}-bin
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker buildx create --use
docker buildx build -f docker/Dockerfile --platform=linux/amd64,linux/arm64 -t apache/celeborn:${VERSION} .
Loading