Skip to content

Commit

Permalink
Move cat to next step
Browse files Browse the repository at this point in the history
  • Loading branch information
diondrapeck committed Nov 9, 2023
1 parent 5be973c commit 86d973c
Show file tree
Hide file tree
Showing 359 changed files with 436 additions and 438 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-component-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml component create -f assets/component/pipeline.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-component-train.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml component create -f assets/component/train.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-cloud-file-https.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/cloud-file-https.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-cloud-file-wasbs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/cloud-file-wasbs.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-cloud-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/cloud-file.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-cloud-folder-https.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/cloud-folder-https.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-cloud-folder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/cloud-folder.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-cloud-mltable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/cloud-mltable.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-iris-csv-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/iris-csv-example.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-local-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/local-file.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/local-folder-sampledata.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-local-folder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/local-folder.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-local-mltable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/local-mltable.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-data-public-file-https.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml data create -f assets/data/public-file-https.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml environment create -f assets/environment/docker-context.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-environment-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml environment create -f assets/environment/docker-image.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-model-local-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml model create -f assets/model/local-file.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-assets-model-local-mlflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml model create -f assets/model/local-mlflow.yml > sample_log.txt 2>&1
cat sample_log.txt
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ jobs:
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n tomoutputsparquetendpoint5272 -y
az ml batch-endpoint delete -n tomoutputsparquetendpoint2415 -y
working-directory: cli
continue-on-error: true
- name: create endpoint
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
cat endpoints/batch/deploy-models/custom-outputs-parquet/endpoint.yml
az ml batch-endpoint create -n tomoutputsparquetendpoint5272 -f endpoints/batch/deploy-models/custom-outputs-parquet/endpoint.yml > sample_log.txt 2>&1
cat sample_log.txt
az ml batch-endpoint create -n tomoutputsparquetendpoint2415 -f endpoints/batch/deploy-models/custom-outputs-parquet/endpoint.yml > sample_log.txt 2>&1
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down Expand Up @@ -86,11 +86,11 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
cat endpoints/batch/deploy-models/custom-outputs-parquet/deployment.yml
az ml batch-deployment create -e tomoutputsparquetendpoint5272 -f endpoints/batch/deploy-models/custom-outputs-parquet/deployment.yml > sample_log.txt 2>&1
cat sample_log.txt
az ml batch-deployment create -e tomoutputsparquetendpoint2415 -f endpoints/batch/deploy-models/custom-outputs-parquet/deployment.yml > sample_log.txt 2>&1
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand All @@ -117,5 +117,5 @@ jobs:
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n tomoutputsparquetendpoint5272 -y
az ml batch-endpoint delete -n tomoutputsparquetendpoint2415 -y
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ jobs:
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n tclassifiermlflowendpoint1867 -y
az ml batch-endpoint delete -n tclassifiermlflowendpoint7300 -y
working-directory: cli
continue-on-error: true
- name: create endpoint
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
cat endpoints/batch/deploy-models/heart-classifier-mlflow/endpoint.yml
az ml batch-endpoint create -n tclassifiermlflowendpoint1867 -f endpoints/batch/deploy-models/heart-classifier-mlflow/endpoint.yml > sample_log.txt 2>&1
cat sample_log.txt
az ml batch-endpoint create -n tclassifiermlflowendpoint7300 -f endpoints/batch/deploy-models/heart-classifier-mlflow/endpoint.yml > sample_log.txt 2>&1
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand All @@ -85,5 +85,5 @@ jobs:
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n tclassifiermlflowendpoint1867 -y
az ml batch-endpoint delete -n tclassifiermlflowendpoint7300 -y
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ jobs:
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n textsummarizationendpoint9694 -y
az ml batch-endpoint delete -n textsummarizationendpoint3224 -y
working-directory: cli
continue-on-error: true
- name: create endpoint
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
cat endpoints/batch/deploy-models/huggingface-text-summarization/endpoint.yml
az ml batch-endpoint create -n textsummarizationendpoint9694 -f endpoints/batch/deploy-models/huggingface-text-summarization/endpoint.yml > sample_log.txt 2>&1
cat sample_log.txt
az ml batch-endpoint create -n textsummarizationendpoint3224 -f endpoints/batch/deploy-models/huggingface-text-summarization/endpoint.yml > sample_log.txt 2>&1
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand Down Expand Up @@ -86,11 +86,11 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
cat endpoints/batch/deploy-models/huggingface-text-summarization/deployment.yml
az ml batch-deployment create -e textsummarizationendpoint9694 -f endpoints/batch/deploy-models/huggingface-text-summarization/deployment.yml > sample_log.txt 2>&1
cat sample_log.txt
az ml batch-deployment create -e textsummarizationendpoint3224 -f endpoints/batch/deploy-models/huggingface-text-summarization/deployment.yml > sample_log.txt 2>&1
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand All @@ -117,5 +117,5 @@ jobs:
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n textsummarizationendpoint9694 -y
az ml batch-endpoint delete -n textsummarizationendpoint3224 -y
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ jobs:
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n imagenetclassifierendpoint9619 -y
az ml batch-endpoint delete -n imagenetclassifierendpoint2792 -y
working-directory: cli
continue-on-error: true
- name: create endpoint
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
cat endpoints/batch/deploy-models/imagenet-classifier/endpoint.yml
az ml batch-endpoint create -n imagenetclassifierendpoint9619 -f endpoints/batch/deploy-models/imagenet-classifier/endpoint.yml > sample_log.txt 2>&1
cat sample_log.txt
az ml batch-endpoint create -n imagenetclassifierendpoint2792 -f endpoints/batch/deploy-models/imagenet-classifier/endpoint.yml > sample_log.txt 2>&1
working-directory: cli
- name: Determine Failure Reason
run: |
cat sample_log.txt
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" sample_log.txt; then
Expand All @@ -85,5 +85,5 @@ jobs:
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n imagenetclassifierendpoint9619 -y
az ml batch-endpoint delete -n imagenetclassifierendpoint2792 -y
working-directory: cli
Loading

0 comments on commit 86d973c

Please sign in to comment.