-
Notifications
You must be signed in to change notification settings - Fork 688
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Docker publish | ||
|
||
on: | ||
schedule: | ||
- cron: '0 15 * * *' | ||
workflow_dispatch: | ||
inputs: | ||
mode: | ||
description: 'release/nightly, default is nightly' | ||
required: true | ||
default: 'nightly' | ||
|
||
jobs: | ||
publish: | ||
if: github.repository == 'deepjavalibrary/djl' | ||
runs-on: ubuntu-latest | ||
env: | ||
DOCKER_REGISTRY: deepjavalibrary | ||
DOCKER_REPOSITORY: djl-spark | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Docker buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1-node16 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-2 | ||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v1 | ||
with: | ||
registries: "711395599931" | ||
- name: Login to Docker | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Set variables | ||
run: | | ||
DJL_VERSION=$(cat gradle.properties | awk -F '=' '/djl_version/ {print $2}') | ||
echo "DJL_VERSION=$DJL_VERSION" >> $GITHUB_ENV | ||
- name: Build wheel | ||
working-directory: extensions/spark/setup/ | ||
run: ./setup.py bdist_wheel | ||
- name: Build and push nightly docker image | ||
if: ${{ github.event.inputs.mode == '' || github.event.inputs.mode == 'nightly' }} | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
push: true | ||
file: docker/spark/Dockerfile | ||
tags: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_REPOSITORY }}:cpu-nightly | ||
- name: Build and push release docker image | ||
if: ${{ github.event.inputs.mode == 'release' }} | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
file: docker/spark/Dockerfile | ||
build-args: DJL_VERSION=${DJL_VERSION} | ||
tags: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_REPOSITORY }}:${{ env.DJL_VERSION }}-cpu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters