-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from anarkiwi/docker
publish images.
- Loading branch information
Showing
1 changed file
with
110 additions
and
0 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,110 @@ | ||
name: buildx | ||
|
||
on: | ||
push: | ||
branches: main | ||
tags: 'v*' | ||
|
||
jobs: | ||
buildx-torchserve: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get the version | ||
id: get_version | ||
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | ||
- name: Change for main | ||
id: change_version | ||
run: if [ "${{ steps.get_version.outputs.VERSION }}" == "main" ]; then echo ::set-output name=VERSION::latest; else echo ::set-output name=VERSION::${{ steps.get_version.outputs.VERSION }}; fi | ||
- name: Set up qemu | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Docker Login | ||
env: | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | ||
run: | | ||
echo "${DOCKER_PASSWORD}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin | ||
if: github.repository == 'iqtlabs/torchserve' && github.event_name == 'push' | ||
- name: Build and push platforms | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: docker/Dockerfile.torchserve | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: iqtlabs/torchserve:${{ steps.change_version.outputs.VERSION }} | ||
if: github.repository == 'iqtlabs/torchserve' && github.event_name == 'push' | ||
buildx-orin-torchserve: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get the version | ||
id: get_version | ||
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | ||
- name: Change for main | ||
id: change_version | ||
run: if [ "${{ steps.get_version.outputs.VERSION }}" == "main" ]; then echo ::set-output name=VERSION::latest; else echo ::set-output name=VERSION::${{ steps.get_version.outputs.VERSION }}; fi | ||
- name: Set up qemu | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Docker Login | ||
env: | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | ||
run: | | ||
echo "${DOCKER_PASSWORD}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin | ||
if: github.repository == 'iqtlabs/torchserve' && github.event_name == 'push' | ||
- name: Build and push platforms | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: docker/Dockerfile.orin-torchserve | ||
platforms: linux/arm64 | ||
push: true | ||
tags: iqtlabs/orin-torchserve:${{ steps.change_version.outputs.VERSION }} | ||
if: github.repository == 'iqtlabs/torchserve' && github.event_name == 'push' | ||
buildx-cuda-torchserve: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get the version | ||
id: get_version | ||
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | ||
- name: Change for main | ||
id: change_version | ||
run: if [ "${{ steps.get_version.outputs.VERSION }}" == "main" ]; then echo ::set-output name=VERSION::latest; else echo ::set-output name=VERSION::${{ steps.get_version.outputs.VERSION }}; fi | ||
- name: Set up qemu | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Docker Login | ||
env: | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | ||
run: | | ||
echo "${DOCKER_PASSWORD}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin | ||
if: github.repository == 'iqtlabs/torchserve' && github.event_name == 'push' | ||
- name: Build and push platforms | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: docker/Dockerfile.cuda-torchserve | ||
platforms: linux/amd64 | ||
push: true | ||
tags: iqtlabs/cuda-torchserve:${{ steps.change_version.outputs.VERSION }} | ||
if: github.repository == 'iqtlabs/torchserve' && github.event_name == 'push' |