Skip to content
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.

Commit

Permalink
add support for arm architecture for published images (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
damianoneill authored Dec 15, 2023
1 parent b3d2b3f commit 3f084d1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cpu_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
with:
context: .
file: ./Dockerfile
platforms: linux/amd64, linux/arm64
push: true
tags: |
${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cuda_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
with:
context: .
file: ./Dockerfile.cuda12
platforms: linux/amd64, linux/arm64
push: true
tags: |
${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.CUDA_12_IMAGE_NAME }}:${{ github.sha }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gptq_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
with:
context: .
file: ./Dockerfile.gptq
platforms: linux/amd64, linux/arm64
push: true
tags: |
${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.GPTQ_IMAGE_NAME }}:${{ github.sha }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/metal_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
with:
context: .
file: ./Dockerfile.metal
platforms: linux/amd64, linux/arm64
push: true
tags: |
${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.METAL_IMAGE_NAME }}:${{ github.sha }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/smoke_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
with:
context: .
file: ./Dockerfile
platforms: linux/amd64, linux/arm64
push: true
tags: |
${{ env.REGISTRY }}/${{ env.REPO_ORG_NAME }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
Expand Down Expand Up @@ -168,7 +169,7 @@ jobs:
gpt-neox-smoke-test:
runs-on: ubuntu-latest
needs: build-image
steps:
steps:
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.7.0
- name: Set up Helm
Expand All @@ -184,7 +185,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 0
- name: Install ialacol with gpt-neox based model and wait for pods to be ready
run: |
cat > values.yaml <<EOF
Expand Down Expand Up @@ -236,7 +237,7 @@ jobs:
starcoder-smoke-test:
runs-on: ubuntu-latest
needs: build-image
steps:
steps:
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.7.0
- name: Set up Helm
Expand All @@ -252,7 +253,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 0
- name: Install ialacol with starcoder based model and wait for pods to be ready
run: |
cat > values.yaml <<EOF
Expand Down Expand Up @@ -376,4 +377,3 @@ jobs:
- if: always()
run: |
kubectl logs --tail=200 --selector app.kubernetes.io/name=$LLAMA_HELM_RELEASE_NAME -n $HELM_NAMESPACE

0 comments on commit 3f084d1

Please sign in to comment.