Skip to content

Commit

Permalink
Merge branch 'main' into cli-2.23.0-release-validatio
Browse files Browse the repository at this point in the history
  • Loading branch information
TajiHarrisMicrosoft authored Jan 31, 2024
2 parents 33ae794 + 2d22516 commit f64af34
Show file tree
Hide file tree
Showing 392 changed files with 3,798 additions and 113 deletions.
6 changes: 6 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@
/cli/jobs/spark/serverless-spark-standalone-user-identity.yaml @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/cli/jobs/spark/spark-job-component.yml @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/cli/misc.sh @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/cli/monitoring/azureml-e2e-model-monitoring @sdgilley @msakande @Blackmist @nemanjarajic @ahughes-msft @yunjie-hub
/cli/monitoring/advanced-model-monitoring.yaml @sdgilley @msakande @Blackmist @nemanjarajic @ahughes-msft @yunjie-hub
/cli/monitoring/custom-monitoring.yaml @sdgilley @msakande @Blackmist @nemanjarajic @ahughes-msft @yunjie-hub
/cli/monitoring/generation-safety-quality-monitoring.yaml @sdgilley @msakande @Blackmist @ahughes-msft @yunjie-hub
/cli/monitoring/model-monitoring-with-collected-data.yaml @sdgilley @msakande @Blackmist @ahughes-msft @yunjie-hub
/cli/monitoring/out-of-box-monitoring.yaml @sdgilley @msakande @Blackmist @ahughes-msft @yunjie-hub
/cli/resources/compute/cluster-basic.yml @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/cli/resources/compute/cluster-location.yml @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/cli/resources/compute/cluster-low-priority.yml @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
Expand Down
25 changes: 24 additions & 1 deletion .github/workflows/cli-assets-component-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,32 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/component"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
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
log_output=$(az ml component create -f assets/component/pipeline.yml 2>&1)
echo "$log_output" > create-asset.log
cat create-asset.log
working-directory: cli
- name: Determine Failure Reason
run: |
failure_reason="N/A"
if [ "${{ job.status }}" == "failure" ]; then
if grep -q "ResourceNotReady" create-asset.log; then
failure_reason = "ResourceNotReady"
elif grep -q "quota" create-asset.log; then
failure_reason="QuotaIssue"
elif grep -q "ParentResourceNotFound" create-asset.log; then
failure_reason="ParentResourceNotFound"
else
failure_reason="UncategorizedFailure"
fi
fi
echo "FAILURE_REASON=$failure_reason" >> $GITHUB_ENV
working-directory: cli
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-component-train.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/component"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-cloud-file-https.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-cloud-file-wasbs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-cloud-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-cloud-folder-https.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-cloud-folder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-cloud-mltable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-iris-csv-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-local-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-local-folder-sampledata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-local-folder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-local-mltable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-data-public-file-https.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/data"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-environment-docker-context.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/environment"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-environment-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/environment"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-model-local-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/model"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cli-assets-model-local-mlflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/assets/model"
working-directory: infra/bootstrapping
continue-on-error: false
- name: create asset
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/endpoints/batch/deploy-models/custom-outputs-parquet"
working-directory: infra/bootstrapping
continue-on-error: false
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand All @@ -68,4 +73,4 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n tomoutputsparquetendpoint8741 -y
working-directory: cli
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/endpoints/batch/deploy-models/heart-classifier-mlflow"
working-directory: infra/bootstrapping
continue-on-error: false
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand All @@ -61,4 +66,4 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n tclassifiermlflowendpoint3191 -y
working-directory: cli
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/endpoints/batch/deploy-models/huggingface-text-summarization"
working-directory: infra/bootstrapping
continue-on-error: false
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand All @@ -68,4 +73,4 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n textsummarizationendpoint2742 -y
working-directory: cli
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/endpoints/batch/deploy-models/imagenet-classifier"
working-directory: infra/bootstrapping
continue-on-error: false
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand All @@ -61,4 +66,4 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n imagenetclassifierendpoint3948 -y
working-directory: cli
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/endpoints/batch/deploy-models/mnist-classifier"
working-directory: infra/bootstrapping
continue-on-error: false
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand All @@ -61,4 +66,4 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n lsmnistclassifierendpoint9980 -y
working-directory: cli
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/endpoints/batch/deploy-pipelines/batch-scoring-with-preprocessing"
working-directory: infra/bootstrapping
continue-on-error: false
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand All @@ -68,4 +73,4 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n withpreprocessingendpoint6601 -y
working-directory: cli
working-directory: cli
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
bash setup.sh
working-directory: cli
continue-on-error: true
- name: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/endpoints/batch/deploy-pipelines/hello-batch"
working-directory: infra/bootstrapping
continue-on-error: false
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
Expand All @@ -68,4 +73,4 @@ jobs:
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh";
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh";
az ml batch-endpoint delete -n pelineshellobatchendpoint9006 -y
working-directory: cli
working-directory: cli
Loading

0 comments on commit f64af34

Please sign in to comment.