-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: chensuyue <[email protected]> Signed-off-by: Sun, Xuehao <[email protected]>
- Loading branch information
Showing
61 changed files
with
987 additions
and
954 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 |
---|---|---|
|
@@ -6,6 +6,9 @@ permissions: read-all | |
on: | ||
workflow_call: | ||
inputs: | ||
node: | ||
required: true | ||
type: string | ||
example: | ||
required: true | ||
type: string | ||
|
@@ -37,48 +40,56 @@ on: | |
default: "latest" | ||
required: false | ||
type: string | ||
GenAIComps_branch: | ||
default: "main" | ||
required: false | ||
type: string | ||
jobs: | ||
#################################################################################################### | ||
# Image Build | ||
#################################################################################################### | ||
build-images: | ||
if: ${{ fromJSON(inputs.build) }} | ||
strategy: | ||
matrix: | ||
node: ["docker-build-xeon", "docker-build-gaudi"] | ||
runs-on: ${{ matrix.node }} | ||
runs-on: "docker-build-${{ inputs.node }}" | ||
continue-on-error: true | ||
steps: | ||
- name: Clean Up Working Directory | ||
run: | | ||
sudo rm -rf ${{github.workspace}}/* | ||
run: sudo rm -rf ${{github.workspace}}/* | ||
|
||
- name: Checkout out Repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Clone required Repo | ||
run: | | ||
cd ${{ github.workspace }}/${{ inputs.example }}/docker | ||
build_compose_path=${{ github.workspace }}/${{ inputs.example }}/docker/docker_build_compose.yaml | ||
if [[ $(grep -c "tei-gaudi:" ${docker_compose_path}) != 0 ]]; then | ||
git clone https://github.com/huggingface/tei-gaudi.git | ||
fi | ||
if [[ $(grep -c "vllm:" ${docker_compose_path}) != 0 ]]; then | ||
git clone https://github.com/huggingface/tei-gaudi.git | ||
fi | ||
git clone https://github.com/opea-project/GenAIComps.git | ||
cd GenAIComps && checkout ${{ inputs.GenAIComps_branch }} && cd ../ | ||
- name: Build Image | ||
if: ${{ fromJSON(inputs.build) }} | ||
uses: opea-project/validation/actions/image-build@main | ||
with: | ||
work_dir: ${{ github.workspace }}/${{ inputs.example }} | ||
docker_compose_path: ${{ github.workspace }}/.github/workflows/docker/compose/${{ inputs.example }}-compose.yaml | ||
work_dir: ${{ github.workspace }}/${{ inputs.example }}/docker | ||
docker_compose_path: ${{ github.workspace }}/${{ inputs.example }}/docker/docker_build_compose.yaml | ||
registry: ${OPEA_IMAGE_REPO}opea | ||
tag: ${{ inputs.tag }} | ||
|
||
#################################################################################################### | ||
# Trivy Scan | ||
#################################################################################################### | ||
image-list: | ||
needs: [ build-images ] | ||
if: ${{ fromJSON(inputs.scan) }} | ||
needs: [build-images] | ||
if: ${{ fromJSON(inputs.scan) && inputs.node == 'gaudi' }} | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.scan-matrix.outputs.matrix }} | ||
steps: | ||
- name: Harden Runner | ||
uses: step-security/[email protected] | ||
with: | ||
egress-policy: audit | ||
|
||
- name: Checkout out Repo | ||
uses: actions/checkout@v4 | ||
|
||
|
@@ -90,34 +101,32 @@ jobs: | |
echo "matrix=$(cat ${compose_path} | yq -r '.[]' | jq 'keys' | jq -c '.')" >> $GITHUB_OUTPUT | ||
scan-images: | ||
needs: [image-list] | ||
if: ${{ fromJSON(inputs.scan) }} | ||
runs-on: "docker-build-gaudi" | ||
needs: [image-list, build-images] | ||
if: ${{ fromJSON(inputs.scan) && inputs.node == 'gaudi'}} | ||
runs-on: "docker-build-${{ inputs.node }}" | ||
strategy: | ||
matrix: | ||
image: ${{ fromJSON(needs.image-list.outputs.matrix) }} | ||
fail-fast: false | ||
steps: | ||
- name: Harden Runner | ||
uses: step-security/[email protected] | ||
with: | ||
egress-policy: audit | ||
|
||
- name: Pull Image | ||
run: docker pull ${OPEA_IMAGE_REPO}opea/${{ matrix.image }}:${{ inputs.tag }} | ||
run: | | ||
docker pull ${OPEA_IMAGE_REPO}opea/${{ matrix.image }}:${{ inputs.tag }} | ||
echo "OPEA_IMAGE_REPO=${OPEA_IMAGE_REPO}" >> $GITHUB_ENV | ||
- name: Scan Container | ||
uses: opea-project/validation/actions/trivy-scan@main | ||
with: | ||
image-ref: ${OPEA_IMAGE_REPO}opea/${{ matrix.image }}:${{ inputs.tag }} | ||
image-ref: ${{ env.OPEA_IMAGE_REPO }}opea/${{ matrix.image }}:${{ inputs.tag }} | ||
output: ${{ inputs.example }}-${{ matrix.image }}-scan.txt | ||
|
||
- name: Cleanup | ||
if: always() | ||
run: docker rmi -f ${OPEA_IMAGE_REPO}opea/${{ matrix.image }}:${{ inputs.tag }} | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
name: ${{ inputs.example }}-scan | ||
name: ${{ inputs.example }}-${{ matrix.image }}-scan | ||
path: ${{ inputs.example }}-${{ matrix.image }}-scan.txt | ||
overwrite: true | ||
|
||
|
@@ -127,15 +136,11 @@ jobs: | |
test-example-compose: | ||
needs: [build-images] | ||
if: ${{ fromJSON(inputs.test_compose) }} | ||
strategy: | ||
matrix: | ||
hardware: ["xeon", "gaudi"] | ||
fail-fast: false | ||
uses: ./.github/workflows/_run-docker-compose.yml | ||
with: | ||
tag: ${{ inputs.tag }} | ||
example: ${{ inputs.example }} | ||
hardware: ${{ matrix.hardware }} | ||
hardware: ${{ inputs.node }} | ||
secrets: inherit | ||
|
||
|
||
|
@@ -145,14 +150,10 @@ jobs: | |
test-k8s-manifest: | ||
needs: [build-images] | ||
if: ${{ fromJSON(inputs.test_k8s) }} | ||
strategy: | ||
matrix: | ||
hardware: ["xeon", "gaudi"] | ||
fail-fast: false | ||
uses: ./.github/workflows/_manifest-e2e.yml | ||
with: | ||
example: ${{ inputs.example }} | ||
hardware: ${{ matrix.hardware }} | ||
hardware: ${{ inputs.node }} | ||
tag: ${{ inputs.tag }} | ||
secrets: inherit | ||
|
||
|
@@ -162,7 +163,7 @@ jobs: | |
#################################################################################################### | ||
publish: | ||
needs: [image-list, build-images, scan-images, test-example-compose] | ||
if: ${{ fromJSON(inputs.publish) }} | ||
if: ${{ fromJSON(inputs.publish) && inputs.node == 'gaudi' }} | ||
strategy: | ||
matrix: | ||
image: ${{ fromJSON(needs.image-list.outputs.matrix) }} | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
services: | ||
audioqna: | ||
build: | ||
args: | ||
http_proxy: ${http_proxy} | ||
https_proxy: ${https_proxy} | ||
no_proxy: ${no_proxy} | ||
dockerfile: ./Dockerfile | ||
image: ${REGISTRY:-opea}/audioqna:${TAG:-latest} | ||
whisper-gaudi: | ||
build: | ||
context: GenAIComps | ||
dockerfile: comps/asr/whisper/Dockerfile_hpu | ||
extends: audioqna | ||
image: ${REGISTRY:-opea}/whisper-gaudi:${TAG:-latest} | ||
whisper: | ||
build: | ||
context: GenAIComps | ||
dockerfile: comps/asr/whisper/Dockerfile | ||
extends: audioqna | ||
image: ${REGISTRY:-opea}/whisper:${TAG:-latest} | ||
asr: | ||
build: | ||
context: GenAIComps | ||
dockerfile: comps/asr/Dockerfile | ||
extends: audioqna | ||
image: ${REGISTRY:-opea}/asr:${TAG:-latest} | ||
llm-tgi: | ||
build: | ||
context: GenAIComps | ||
dockerfile: comps/llms/text-generation/tgi/Dockerfile | ||
extends: audioqna | ||
image: ${REGISTRY:-opea}/llm-tgi:${TAG:-latest} | ||
speecht5-gaudi: | ||
build: | ||
context: GenAIComps | ||
dockerfile: comps/tts/speecht5/Dockerfile_hpu | ||
extends: audioqna | ||
image: ${REGISTRY:-opea}/speecht5-gaudi:${TAG:-latest} | ||
speecht5: | ||
build: | ||
context: GenAIComps | ||
dockerfile: comps/tts/speecht5/Dockerfile | ||
extends: audioqna | ||
image: ${REGISTRY:-opea}/speecht5:${TAG:-latest} | ||
tts: | ||
build: | ||
context: GenAIComps | ||
dockerfile: comps/tts/Dockerfile | ||
extends: audioqna | ||
image: ${REGISTRY:-opea}/tts:${TAG:-latest} |
Oops, something went wrong.