forked from kserve/kserve
-
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.
Change docker image artifact action to upload tar
Signed-off-by: Sivanantham Chinnaiyan <[email protected]>
- Loading branch information
1 parent
2e96e38
commit 2edc272
Showing
2 changed files
with
50 additions
and
25 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 |
---|---|---|
|
@@ -74,51 +74,76 @@ jobs: | |
- name: Free-up disk space | ||
uses: ./.github/actions/free-up-disk-space | ||
|
||
- name: Setup Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
use: true | ||
|
||
|
||
- name: Build runtime server images | ||
run: | | ||
sudo mkdir -p /mnt/docker-images | ||
sudo chown -R $USER /mnt/docker-images | ||
./test/scripts/gh-actions/build-server-runtimes.sh predictor,transformer | ||
docker image ls | ||
cat ./config/overlays/test/configmap/inferenceservice.yaml | ||
sudo ls -l /mnt/docker-images | ||
- name: Upload sklearn server image | ||
uses: ishworkh/container-image-artifact[email protected] | ||
- name: Upload sklearn artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
image: "kserve/sklearnserver:${{ github.sha }}" | ||
name: sklearn-${GITHUB_SHA} | ||
path: /mnt/docker-images/sklearn-${{ github.sha }}.tar | ||
compression-level: 0 | ||
|
||
- name: Upload xgb server image | ||
uses: ishworkh/container-image-artifact[email protected] | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
image: "kserve/xgbserver:${{ github.sha }}" | ||
name: xgb-${GITHUB_SHA} | ||
path: /mnt/docker-images/xgb-${{ github.sha }}.tar | ||
compression-level: 0 | ||
|
||
- name: Upload lgb server image | ||
uses: ishworkh/container-image-artifact[email protected] | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
image: "kserve/lgbserver:${{ github.sha }}" | ||
name: lgb-${GITHUB_SHA} | ||
path: /mnt/docker-images/lgb-${{ github.sha }}.tar | ||
compression-level: 0 | ||
|
||
- name: Upload pmml server image | ||
uses: ishworkh/container-image-artifact[email protected] | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
image: "kserve/pmmlserver:${{ github.sha }}" | ||
name: pmml-${GITHUB_SHA} | ||
path: /mnt/docker-images/pmml-${{ github.sha }}.tar | ||
compression-level: 0 | ||
|
||
- name: Upload paddle image | ||
uses: ishworkh/container-image-artifact[email protected] | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
image: "kserve/paddleserver:${{ github.sha }}" | ||
name: paddle-${GITHUB_SHA} | ||
path: /mnt/docker-images/paddle-${{ github.sha }}.tar | ||
compression-level: 0 | ||
|
||
- name: Upload image transformer image | ||
uses: ishworkh/container-image-artifact[email protected] | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
image: "kserve/image-transformer:${{ github.sha }}" | ||
name: image-transformer-${GITHUB_SHA} | ||
path: /mnt/docker-images/image-transformer-${{ github.sha }}.tar | ||
compression-level: 0 | ||
|
||
- name: Upload custom model grpc image | ||
uses: ishworkh/container-image-artifact[email protected] | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
image: "kserve/custom-model-grpc:${{ github.sha }}" | ||
name: custom-model-${GITHUB_SHA} | ||
path: /mnt/docker-images/custom-model-${{ github.sha }}.tar | ||
compression-level: 0 | ||
|
||
- name: Upload custom model transformer grpc image | ||
uses: ishworkh/container-image-artifact[email protected] | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
image: "kserve/custom-image-transformer-grpc:${{ github.sha }}" | ||
name: custom-transformer-grpc-${GITHUB_SHA} | ||
path: /mnt/docker-images/custom-transformer-grpc-${{ github.sha }}.tar | ||
compression-level: 0 | ||
|
||
explainer-runtime-build: | ||
runs-on: ubuntu-latest | ||
|
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