generated from nextcloud/app-skeleton-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI to publish images and fix for CUDA/ROCM detection
Signed-off-by: Alexander Piskun <[email protected]>
- Loading branch information
Showing
6 changed files
with
157 additions
and
170 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,54 @@ | ||
name: Publish CPU Image | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
push_to_registry: | ||
name: Build image | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository_owner == 'cloud-py-api' }} # REPLACE THIS WITH YOUR ORGANIZATION NAME | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Log in to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Available platforms | ||
run: echo ${{ steps.buildx.outputs.platforms }} | ||
|
||
- name: Install xmlstarlet | ||
run: sudo apt-get update && sudo apt-get install -y xmlstarlet | ||
|
||
- name: Extract version from XML | ||
id: extract_version | ||
run: | | ||
VERSION=$(xmlstarlet sel -t -v "//image-tag" appinfo/info.xml) | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Log version | ||
run: | | ||
echo "Extracted version: ${{ env.VERSION }}" | ||
- name: Build container image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
push: true | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
file: Dockerfile | ||
tags: ghcr.io/${{ github.repository }}:${{ env.VERSION }} | ||
build-args: | | ||
BUILD_TYPE=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Publish CUDA Image | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
push_to_registry: | ||
name: Build image | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository_owner == 'cloud-py-api' }} # REPLACE THIS WITH YOUR ORGANIZATION NAME | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Available platforms | ||
run: echo ${{ steps.buildx.outputs.platforms }} | ||
|
||
- name: Install xmlstarlet | ||
run: sudo apt-get update && sudo apt-get install -y xmlstarlet | ||
|
||
- name: Extract version from XML | ||
id: extract_version | ||
run: | | ||
VERSION=$(xmlstarlet sel -t -v "//image-tag" appinfo/info.xml) | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Log version | ||
run: | | ||
echo "Extracted version: ${{ env.VERSION }}" | ||
- name: Build container image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
push: true | ||
context: . | ||
platforms: linux/amd64 | ||
file: Dockerfile | ||
tags: ghcr.io/${{ github.repository }}-cuda:${{ env.VERSION }} | ||
build-args: | | ||
BUILD_TYPE=cuda |
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,50 @@ | ||
name: Publish ROCM Image | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
push_to_registry: | ||
name: Build image | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository_owner == 'cloud-py-api' }} # REPLACE THIS WITH YOUR ORGANIZATION NAME | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Available platforms | ||
run: echo ${{ steps.buildx.outputs.platforms }} | ||
|
||
- name: Install xmlstarlet | ||
run: sudo apt-get update && sudo apt-get install -y xmlstarlet | ||
|
||
- name: Extract version from XML | ||
id: extract_version | ||
run: | | ||
VERSION=$(xmlstarlet sel -t -v "//image-tag" appinfo/info.xml) | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Log version | ||
run: | | ||
echo "Extracted version: ${{ env.VERSION }}" | ||
- name: Build container image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
push: true | ||
context: . | ||
platforms: linux/amd64 | ||
file: Dockerfile | ||
tags: ghcr.io/${{ github.repository }}-rocm:${{ env.VERSION }} | ||
build-args: | | ||
BUILD_TYPE=cuda |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nc_py_api[app]>=0.12.0 | ||
nc_py_api[app]>=0.15.1 |