-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix kfp pipelines testing in github workflow. (#611)
* Fix kfp pipelines testing in github workflow. Signed-off-by: Revital Sur <[email protected]> * Minor change. Signed-off-by: Revital Sur <[email protected]> * Address review comments. Signed-off-by: Revital Sur <[email protected]> * Minor change. Signed-off-by: Revital Sur <[email protected]> * Remove test-code-inputcode2parquet.yml Signed-off-by: Revital Sur <[email protected]> * Addres review comments. Signed-off-by: Revital Sur <[email protected]> --------- Signed-off-by: Revital Sur <[email protected]>
- Loading branch information
Showing
21 changed files
with
2,111 additions
and
24 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
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,114 @@ | ||
# | ||
# DO NOT EDIT THIS FILE: it is generated from test-transform.template, Edit there and run make to change these files | ||
# | ||
name: Test KFP - transforms/code/code2parquet | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- "dev" | ||
- "releases/**" | ||
tags: | ||
- "*" | ||
paths: | ||
- "transforms/code/code2parquet/**" | ||
- "!kfp/**" # This is tested in separate workflow | ||
- "!data-processing-lib/**" # This is tested in separate workflow | ||
- "!**.md" | ||
- "!**/doc/**" | ||
- "!**/images/**" | ||
- "!**.gitignore" | ||
pull_request: | ||
branches: | ||
- "dev" | ||
- "releases/**" | ||
paths: | ||
- "transforms/code/code2parquet/**" | ||
- "!data-processing-lib/**" # This is tested in separate workflow | ||
- "!kfp/**" # This is tested in separate workflow | ||
- "!**.md" | ||
- "!**/doc/**" | ||
- "!**/images/**" | ||
- "!**.gitignore" | ||
|
||
|
||
jobs: | ||
test-kfp-v1: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Free up space in github runner | ||
# Free space as indicated here : https://github.com/actions/runner-images/issues/2840#issuecomment-790492173 | ||
run: | | ||
df -h | ||
sudo rm -rf "/usr/local/share/boost" | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
sudo rm -rf /usr/share/dotnet /opt/ghc /usr/local/lib/android /usr/local/share/powershell /usr/share/swift /usr/lib/jvm /usr/local/.ghcup | ||
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true | ||
df -h | ||
- name: Test KFP libs (shared and v1) and run a workflow | ||
timeout-minutes: 120 | ||
run: | | ||
export REPOROOT=$PWD | ||
export K8S_SETUP_SCRIPTS=$PWD/scripts/k8s-setup | ||
source $K8S_SETUP_SCRIPTS/requirements.env | ||
export PATH=$PATH:/tmp/ | ||
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v${KIND_VERSION}/kind-linux-amd64 | ||
chmod 777 /tmp/kind | ||
curl -fsSL -o /tmp/get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | ||
chmod 700 /tmp/get_helm.sh | ||
HELM_INSTALL_DIR=/tmp/ /tmp/get_helm.sh -v v${HELM_VERSION} --no-sudo | ||
chmod 777 /tmp/helm | ||
curl -L https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /tmp/kubectl | ||
chmod 777 /tmp/kubectl | ||
curl https://dl.min.io/client/mc/release/linux-amd64/mc --create-dirs -o /tmp/mc | ||
chmod +x /tmp/mc | ||
export DEPLOY_KUBEFLOW=1 | ||
make -C $K8S_SETUP_SCRIPTS setup | ||
make -C kfp/kfp_support_lib test | ||
make -C transforms workflow-build | ||
source $K8S_SETUP_SCRIPTS/common.sh | ||
make -C transforms/code/code2parquet workflow-test | ||
echo "Run transforms/code/code2parquet completed" | ||
test-kfp-v2: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Free up space in github runner | ||
# Free space as indicated here : https://github.com/actions/runner-images/issues/2840#issuecomment-790492173 | ||
run: | | ||
df -h | ||
sudo rm -rf "/usr/local/share/boost" | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
sudo rm -rf /usr/share/dotnet /opt/ghc /usr/local/lib/android /usr/local/share/powershell /usr/share/swift /usr/lib/jvm /usr/local/.ghcup | ||
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true | ||
df -h | ||
- name: Test KFP libs (shared and v2) and run a workflow | ||
timeout-minutes: 120 | ||
run: | | ||
export REPOROOT=$PWD | ||
export K8S_SETUP_SCRIPTS=$PWD/scripts/k8s-setup | ||
source $K8S_SETUP_SCRIPTS/requirements.env | ||
export PATH=$PATH:/tmp/ | ||
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v${KIND_VERSION}/kind-linux-amd64 | ||
chmod 777 /tmp/kind | ||
curl -fsSL -o /tmp/get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | ||
chmod 700 /tmp/get_helm.sh | ||
HELM_INSTALL_DIR=/tmp/ /tmp/get_helm.sh -v v${HELM_VERSION} --no-sudo | ||
chmod 777 /tmp/helm | ||
curl -L https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /tmp/kubectl | ||
chmod 777 /tmp/kubectl | ||
curl https://dl.min.io/client/mc/release/linux-amd64/mc --create-dirs -o /tmp/mc | ||
chmod +x /tmp/mc | ||
export DEPLOY_KUBEFLOW=1 | ||
export KFPv2=1 | ||
make -C $K8S_SETUP_SCRIPTS setup | ||
make -C kfp/kfp_support_lib test | ||
make -C transforms workflow-build | ||
source $K8S_SETUP_SCRIPTS/common.sh | ||
make -C transforms/code/code2parquet workflow-test | ||
header_text "Run transforms/code/code2parquet completed" |
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,114 @@ | ||
# | ||
# DO NOT EDIT THIS FILE: it is generated from test-transform.template, Edit there and run make to change these files | ||
# | ||
name: Test KFP - transforms/code/code_quality | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- "dev" | ||
- "releases/**" | ||
tags: | ||
- "*" | ||
paths: | ||
- "transforms/code/code_quality/**" | ||
- "!kfp/**" # This is tested in separate workflow | ||
- "!data-processing-lib/**" # This is tested in separate workflow | ||
- "!**.md" | ||
- "!**/doc/**" | ||
- "!**/images/**" | ||
- "!**.gitignore" | ||
pull_request: | ||
branches: | ||
- "dev" | ||
- "releases/**" | ||
paths: | ||
- "transforms/code/code_quality/**" | ||
- "!data-processing-lib/**" # This is tested in separate workflow | ||
- "!kfp/**" # This is tested in separate workflow | ||
- "!**.md" | ||
- "!**/doc/**" | ||
- "!**/images/**" | ||
- "!**.gitignore" | ||
|
||
|
||
jobs: | ||
test-kfp-v1: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Free up space in github runner | ||
# Free space as indicated here : https://github.com/actions/runner-images/issues/2840#issuecomment-790492173 | ||
run: | | ||
df -h | ||
sudo rm -rf "/usr/local/share/boost" | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
sudo rm -rf /usr/share/dotnet /opt/ghc /usr/local/lib/android /usr/local/share/powershell /usr/share/swift /usr/lib/jvm /usr/local/.ghcup | ||
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true | ||
df -h | ||
- name: Test KFP libs (shared and v1) and run a workflow | ||
timeout-minutes: 120 | ||
run: | | ||
export REPOROOT=$PWD | ||
export K8S_SETUP_SCRIPTS=$PWD/scripts/k8s-setup | ||
source $K8S_SETUP_SCRIPTS/requirements.env | ||
export PATH=$PATH:/tmp/ | ||
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v${KIND_VERSION}/kind-linux-amd64 | ||
chmod 777 /tmp/kind | ||
curl -fsSL -o /tmp/get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | ||
chmod 700 /tmp/get_helm.sh | ||
HELM_INSTALL_DIR=/tmp/ /tmp/get_helm.sh -v v${HELM_VERSION} --no-sudo | ||
chmod 777 /tmp/helm | ||
curl -L https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /tmp/kubectl | ||
chmod 777 /tmp/kubectl | ||
curl https://dl.min.io/client/mc/release/linux-amd64/mc --create-dirs -o /tmp/mc | ||
chmod +x /tmp/mc | ||
export DEPLOY_KUBEFLOW=1 | ||
make -C $K8S_SETUP_SCRIPTS setup | ||
make -C kfp/kfp_support_lib test | ||
make -C transforms workflow-build | ||
source $K8S_SETUP_SCRIPTS/common.sh | ||
make -C transforms/code/code_quality workflow-test | ||
echo "Run transforms/code/code_quality completed" | ||
test-kfp-v2: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Free up space in github runner | ||
# Free space as indicated here : https://github.com/actions/runner-images/issues/2840#issuecomment-790492173 | ||
run: | | ||
df -h | ||
sudo rm -rf "/usr/local/share/boost" | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
sudo rm -rf /usr/share/dotnet /opt/ghc /usr/local/lib/android /usr/local/share/powershell /usr/share/swift /usr/lib/jvm /usr/local/.ghcup | ||
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true | ||
df -h | ||
- name: Test KFP libs (shared and v2) and run a workflow | ||
timeout-minutes: 120 | ||
run: | | ||
export REPOROOT=$PWD | ||
export K8S_SETUP_SCRIPTS=$PWD/scripts/k8s-setup | ||
source $K8S_SETUP_SCRIPTS/requirements.env | ||
export PATH=$PATH:/tmp/ | ||
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v${KIND_VERSION}/kind-linux-amd64 | ||
chmod 777 /tmp/kind | ||
curl -fsSL -o /tmp/get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | ||
chmod 700 /tmp/get_helm.sh | ||
HELM_INSTALL_DIR=/tmp/ /tmp/get_helm.sh -v v${HELM_VERSION} --no-sudo | ||
chmod 777 /tmp/helm | ||
curl -L https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /tmp/kubectl | ||
chmod 777 /tmp/kubectl | ||
curl https://dl.min.io/client/mc/release/linux-amd64/mc --create-dirs -o /tmp/mc | ||
chmod +x /tmp/mc | ||
export DEPLOY_KUBEFLOW=1 | ||
export KFPv2=1 | ||
make -C $K8S_SETUP_SCRIPTS setup | ||
make -C kfp/kfp_support_lib test | ||
make -C transforms workflow-build | ||
source $K8S_SETUP_SCRIPTS/common.sh | ||
make -C transforms/code/code_quality workflow-test | ||
header_text "Run transforms/code/code_quality completed" |
Oops, something went wrong.