Skip to content

Commit ec4eab0

Browse files
committedApr 4, 2022
Modifying SDK workflows to sync up with March SDK changes
1 parent 13b353a commit ec4eab0

File tree

26 files changed

+219
-218
lines changed

26 files changed

+219
-218
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
name: sdk-assets-dataset-dataset
1+
name: sdk-assets-data-data
22
on:
33
workflow_dispatch:
44
schedule:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
11-
- .github/workflows/sdk-assets-dataset-dataset.yml
13+
- .github/workflows/sdk-assets-data-data.yml
1214
- notebooks/dev-requirements.txt
1315
jobs:
1416
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -36,12 +38,12 @@ jobs:
3638
run: bash setup.sh
3739
working-directory: cli
3840
continue-on-error: true
39-
- name: run assets/dataset/dataset.ipynb
41+
- name: run assets/data/data.ipynb
4042
run: |
41-
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" dataset.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" dataset.ipynb
43-
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" dataset.ipynb
44-
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" dataset.ipynb
43+
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" data.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" data.ipynb
45+
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" data.ipynb
46+
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" data.ipynb
4547
46-
papermill dataset.ipynb - -k python
47-
working-directory: sdk/assets/dataset
48+
papermill data.ipynb - -k python
49+
working-directory: sdk/assets/data

‎.github/workflows/sdk-assets-environment-environment.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run assets/environment/environment.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" environment.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" environment.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" environment.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" environment.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" environment.ipynb
4547

‎.github/workflows/sdk-assets-model-model.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run assets/model/model.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" model.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" model.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" model.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" model.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" model.ipynb
4547

‎.github/workflows/sdk-endpoints-batch-mnist-nonmlflow.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
name: sdk-endpoints-batch-mnist-nonmlflow
22
on:
33
workflow_dispatch:
4+
schedule:
5+
- cron: "0 */8 * * *"
46
pull_request:
57
branches:
8+
- main
9+
- sdk-preview
610
- sdk-preview
711
paths:
812
- sdk/**
@@ -15,7 +19,7 @@ jobs:
1519
- name: check out repo
1620
uses: actions/checkout@v2
1721
with:
18-
ref: sdk-preview
22+
ref: sdk-preview
1923
- name: setup python
2024
uses: actions/setup-python@v2
2125
with:
@@ -25,7 +29,7 @@ jobs:
2529
- name: azure login
2630
uses: azure/login@v1
2731
with:
28-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
2933
- name: setup SDK
3034
run: bash setup.sh
3135
working-directory: sdk
@@ -37,7 +41,7 @@ jobs:
3741
- name: run endpoints/batch/mnist-nonmlflow.ipynb
3842
run: |
3943
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" mnist-nonmlflow.ipynb
40-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" mnist-nonmlflow.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" mnist-nonmlflow.ipynb
4145
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" mnist-nonmlflow.ipynb
4246
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" mnist-nonmlflow.ipynb
4347
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: sdk-endpoints-online-custom-container-online-endpoints-custom-container
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "0 */8 * * *"
6+
pull_request:
7+
branches:
8+
- main
9+
- sdk-preview
10+
- sdk-preview
11+
paths:
12+
- sdk/**
13+
- .github/workflows/sdk-endpoints-online-custom-container-online-endpoints-custom-container.yml
14+
- notebooks/dev-requirements.txt
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: check out repo
20+
uses: actions/checkout@v2
21+
with:
22+
ref: sdk-preview
23+
- name: setup python
24+
uses: actions/setup-python@v2
25+
with:
26+
python-version: "3.8"
27+
- name: pip install notebook reqs
28+
run: pip install -r notebooks/dev-requirements.txt
29+
- name: azure login
30+
uses: azure/login@v1
31+
with:
32+
creds: ${{secrets.AZ_CREDS}}
33+
- name: setup SDK
34+
run: bash setup.sh
35+
working-directory: sdk
36+
continue-on-error: true
37+
- name: setup CLI
38+
run: bash setup.sh
39+
working-directory: cli
40+
continue-on-error: true
41+
- name: run endpoints/online/custom-container/online-endpoints-custom-container.ipynb
42+
run: |
43+
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" online-endpoints-custom-container.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" online-endpoints-custom-container.ipynb
45+
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" online-endpoints-custom-container.ipynb
46+
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" online-endpoints-custom-container.ipynb
47+
48+
papermill online-endpoints-custom-container.ipynb - -k python
49+
working-directory: sdk/endpoints/online/custom-container
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
name: sdk-jobs-pipelines-command_job_in_pipeline-command_job_in_pipeline
1+
name: sdk-endpoints-online-managed-online-endpoints-safe-rollout
22
on:
33
workflow_dispatch:
44
schedule:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
11-
- .github/workflows/sdk-jobs-pipelines-command_job_in_pipeline-command_job_in_pipeline.yml
13+
- .github/workflows/sdk-endpoints-online-managed-online-endpoints-safe-rollout.yml
1214
- notebooks/dev-requirements.txt
1315
jobs:
1416
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -36,12 +38,12 @@ jobs:
3638
run: bash setup.sh
3739
working-directory: cli
3840
continue-on-error: true
39-
- name: run jobs/pipelines/command_job_in_pipeline/command_job_in_pipeline.ipynb
41+
- name: run endpoints/online/managed/online-endpoints-safe-rollout.ipynb
4042
run: |
41-
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" command_job_in_pipeline.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" command_job_in_pipeline.ipynb
43-
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" command_job_in_pipeline.ipynb
44-
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" command_job_in_pipeline.ipynb
43+
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" online-endpoints-safe-rollout.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" online-endpoints-safe-rollout.ipynb
45+
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" online-endpoints-safe-rollout.ipynb
46+
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" online-endpoints-safe-rollout.ipynb
4547
46-
papermill command_job_in_pipeline.ipynb - -k python
47-
working-directory: sdk/jobs/pipelines/command_job_in_pipeline
48+
papermill online-endpoints-safe-rollout.ipynb - -k python
49+
working-directory: sdk/endpoints/online/managed
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
name: sdk-jobs-pipelines-helloworld-hello-world-io
1+
name: sdk-endpoints-online-managed-online-endpoints-simple-deployment
22
on:
33
workflow_dispatch:
44
schedule:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
11-
- .github/workflows/sdk-jobs-pipelines-helloworld-hello-world-io.yml
13+
- .github/workflows/sdk-endpoints-online-managed-online-endpoints-simple-deployment.yml
1214
- notebooks/dev-requirements.txt
1315
jobs:
1416
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -36,12 +38,12 @@ jobs:
3638
run: bash setup.sh
3739
working-directory: cli
3840
continue-on-error: true
39-
- name: run jobs/pipelines/helloworld/hello-world-io.ipynb
41+
- name: run endpoints/online/managed/online-endpoints-simple-deployment.ipynb
4042
run: |
41-
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" hello-world-io.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" hello-world-io.ipynb
43-
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" hello-world-io.ipynb
44-
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" hello-world-io.ipynb
43+
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" online-endpoints-simple-deployment.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" online-endpoints-simple-deployment.ipynb
45+
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" online-endpoints-simple-deployment.ipynb
46+
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" online-endpoints-simple-deployment.ipynb
4547
46-
papermill hello-world-io.ipynb - -k python
47-
working-directory: sdk/jobs/pipelines/helloworld
48+
papermill online-endpoints-simple-deployment.ipynb - -k python
49+
working-directory: sdk/endpoints/online/managed
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
name: sdk-jobs-pipelines-helloworld-hello-world
1+
name: sdk-endpoints-online-mlflow-online-endpoints-deploy-mlflow-model
22
on:
33
workflow_dispatch:
44
schedule:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
11-
- .github/workflows/sdk-jobs-pipelines-helloworld-hello-world.yml
13+
- .github/workflows/sdk-endpoints-online-mlflow-online-endpoints-deploy-mlflow-model.yml
1214
- notebooks/dev-requirements.txt
1315
jobs:
1416
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -36,12 +38,12 @@ jobs:
3638
run: bash setup.sh
3739
working-directory: cli
3840
continue-on-error: true
39-
- name: run jobs/pipelines/helloworld/hello-world.ipynb
41+
- name: run endpoints/online/mlflow/online-endpoints-deploy-mlflow-model.ipynb
4042
run: |
41-
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" hello-world.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" hello-world.ipynb
43-
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" hello-world.ipynb
44-
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" hello-world.ipynb
43+
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" online-endpoints-deploy-mlflow-model.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" online-endpoints-deploy-mlflow-model.ipynb
45+
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" online-endpoints-deploy-mlflow-model.ipynb
46+
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" online-endpoints-deploy-mlflow-model.ipynb
4547
46-
papermill hello-world.ipynb - -k python
47-
working-directory: sdk/jobs/pipelines/helloworld
48+
papermill online-endpoints-deploy-mlflow-model.ipynb - -k python
49+
working-directory: sdk/endpoints/online/mlflow
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
name: sdk-jobs-pipelines-nyc-taxi-nyc-taxi
1+
name: sdk-jobs-pipelines-basic_pipeline-basic_pipeline
22
on:
33
workflow_dispatch:
44
schedule:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
11-
- .github/workflows/sdk-jobs-pipelines-nyc-taxi-nyc-taxi.yml
13+
- .github/workflows/sdk-jobs-pipelines-basic_pipeline-basic_pipeline.yml
1214
- notebooks/dev-requirements.txt
1315
jobs:
1416
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -36,12 +38,12 @@ jobs:
3638
run: bash setup.sh
3739
working-directory: cli
3840
continue-on-error: true
39-
- name: run jobs/pipelines/nyc-taxi/nyc-taxi.ipynb
41+
- name: run jobs/pipelines/basic_pipeline/basic_pipeline.ipynb
4042
run: |
41-
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" nyc-taxi.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" nyc-taxi.ipynb
43-
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" nyc-taxi.ipynb
44-
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" nyc-taxi.ipynb
43+
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" basic_pipeline.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" basic_pipeline.ipynb
45+
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" basic_pipeline.ipynb
46+
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" basic_pipeline.ipynb
4547
46-
papermill nyc-taxi.ipynb - -k python
47-
working-directory: sdk/jobs/pipelines/nyc-taxi
48+
papermill basic_pipeline.ipynb - -k python
49+
working-directory: sdk/jobs/pipelines/basic_pipeline

‎.github/workflows/sdk-jobs-pipelines-cifar-10-cifar-10-pipeline.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/pipelines/cifar-10/cifar-10-pipeline.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" cifar-10-pipeline.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" cifar-10-pipeline.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" cifar-10-pipeline.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" cifar-10-pipeline.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" cifar-10-pipeline.ipynb
4547
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
name: sdk-jobs-pipelines-with-components-basic-1b_e2e_registered_components-e2e_registered_components
1+
name: sdk-jobs-pipelines-e2e_registered_components-e2e_registered_components
22
on:
33
workflow_dispatch:
44
schedule:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
11-
- .github/workflows/sdk-jobs-pipelines-with-components-basic-1b_e2e_registered_components-e2e_registered_components.yml
13+
- .github/workflows/sdk-jobs-pipelines-e2e_registered_components-e2e_registered_components.yml
1214
- notebooks/dev-requirements.txt
1315
jobs:
1416
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -36,12 +38,12 @@ jobs:
3638
run: bash setup.sh
3739
working-directory: cli
3840
continue-on-error: true
39-
- name: run jobs/pipelines-with-components/basic/1b_e2e_registered_components/e2e_registered_components.ipynb
41+
- name: run jobs/pipelines/e2e_registered_components/e2e_registered_components.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" e2e_registered_components.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" e2e_registered_components.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" e2e_registered_components.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" e2e_registered_components.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" e2e_registered_components.ipynb
4547
4648
papermill e2e_registered_components.ipynb - -k python
47-
working-directory: sdk/jobs/pipelines-with-components/basic/1b_e2e_registered_components
49+
working-directory: sdk/jobs/pipelines/e2e_registered_components
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
name: sdk-jobs-pipelines-with-components-nyc_taxi_data_regression-nyc_taxi_data_regression
1+
name: sdk-jobs-pipelines-nyc_taxi_data_regression-nyc_taxi_data_regression
22
on:
33
workflow_dispatch:
44
schedule:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
11-
- .github/workflows/sdk-jobs-pipelines-with-components-nyc_taxi_data_regression-nyc_taxi_data_regression.yml
13+
- .github/workflows/sdk-jobs-pipelines-nyc_taxi_data_regression-nyc_taxi_data_regression.yml
1214
- notebooks/dev-requirements.txt
1315
jobs:
1416
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -36,12 +38,12 @@ jobs:
3638
run: bash setup.sh
3739
working-directory: cli
3840
continue-on-error: true
39-
- name: run jobs/pipelines-with-components/nyc_taxi_data_regression/nyc_taxi_data_regression.ipynb
41+
- name: run jobs/pipelines/nyc_taxi_data_regression/nyc_taxi_data_regression.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" nyc_taxi_data_regression.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" nyc_taxi_data_regression.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" nyc_taxi_data_regression.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" nyc_taxi_data_regression.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" nyc_taxi_data_regression.ipynb
4547
4648
papermill nyc_taxi_data_regression.ipynb - -k python
47-
working-directory: sdk/jobs/pipelines-with-components/nyc_taxi_data_regression
49+
working-directory: sdk/jobs/pipelines/nyc_taxi_data_regression
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
name: sdk-jobs-pipelines-with-components-tf_mnist-tf_mnist
1+
name: sdk-jobs-pipelines-tf_mnist-tf_mnist
22
on:
33
workflow_dispatch:
44
schedule:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
11-
- .github/workflows/sdk-jobs-pipelines-with-components-tf_mnist-tf_mnist.yml
13+
- .github/workflows/sdk-jobs-pipelines-tf_mnist-tf_mnist.yml
1214
- notebooks/dev-requirements.txt
1315
jobs:
1416
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -36,12 +38,12 @@ jobs:
3638
run: bash setup.sh
3739
working-directory: cli
3840
continue-on-error: true
39-
- name: run jobs/pipelines-with-components/tf_mnist/tf_mnist.ipynb
41+
- name: run jobs/pipelines/tf_mnist/tf_mnist.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" tf_mnist.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" tf_mnist.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" tf_mnist.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" tf_mnist.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" tf_mnist.ipynb
4547
4648
papermill tf_mnist.ipynb - -k python
47-
working-directory: sdk/jobs/pipelines-with-components/tf_mnist
49+
working-directory: sdk/jobs/pipelines/tf_mnist

‎.github/workflows/sdk-jobs-pipelines-with-components-basic-3a_basic_pipeline-basic_pipline.yml

-47
This file was deleted.

‎.github/workflows/sdk-jobs-pipelines-with-components-pipeline-dsl-example.yml

-47
This file was deleted.

‎.github/workflows/sdk-jobs-single-step-lightgbm-iris-lightgbm-iris-sweep.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/lightgbm/iris/lightgbm-iris-sweep.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" lightgbm-iris-sweep.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" lightgbm-iris-sweep.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" lightgbm-iris-sweep.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" lightgbm-iris-sweep.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" lightgbm-iris-sweep.ipynb
4547

‎.github/workflows/sdk-jobs-single-step-pytorch-iris-pytorch-iris.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/pytorch/iris/pytorch-iris.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" pytorch-iris.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" pytorch-iris.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" pytorch-iris.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" pytorch-iris.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" pytorch-iris.ipynb
4547

‎.github/workflows/sdk-jobs-single-step-r-accidents-accident-prediction.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/r/accidents/accident-prediction.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" accident-prediction.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" accident-prediction.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" accident-prediction.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" accident-prediction.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" accident-prediction.ipynb
4547

‎.github/workflows/sdk-jobs-single-step-scikit-learn-diabetes-sklearn-diabetes.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/scikit-learn/diabetes/sklearn-diabetes.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" sklearn-diabetes.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" sklearn-diabetes.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" sklearn-diabetes.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" sklearn-diabetes.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" sklearn-diabetes.ipynb
4547

‎.github/workflows/sdk-jobs-single-step-scikit-learn-iris-iris-scikit-learn.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/scikit-learn/iris/iris-scikit-learn.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" iris-scikit-learn.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" iris-scikit-learn.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" iris-scikit-learn.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" iris-scikit-learn.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" iris-scikit-learn.ipynb
4547

‎.github/workflows/sdk-jobs-single-step-scikit-learn-mnist-sklearn-mnist.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/scikit-learn/mnist/sklearn-mnist.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" sklearn-mnist.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" sklearn-mnist.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" sklearn-mnist.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" sklearn-mnist.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" sklearn-mnist.ipynb
4547

‎.github/workflows/sdk-jobs-single-step-tensorflow-mnist-distributed-horovod-tensorflow-mnist-distributed-horovod.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/tensorflow/mnist-distributed-horovod/tensorflow-mnist-distributed-horovod.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" tensorflow-mnist-distributed-horovod.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" tensorflow-mnist-distributed-horovod.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" tensorflow-mnist-distributed-horovod.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" tensorflow-mnist-distributed-horovod.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" tensorflow-mnist-distributed-horovod.ipynb
4547

‎.github/workflows/sdk-jobs-single-step-tensorflow-mnist-distributed-tensorflow-mnist-distributed.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/tensorflow/mnist-distributed/tensorflow-mnist-distributed.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" tensorflow-mnist-distributed.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" tensorflow-mnist-distributed.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" tensorflow-mnist-distributed.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" tensorflow-mnist-distributed.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" tensorflow-mnist-distributed.ipynb
4547

‎.github/workflows/sdk-jobs-single-step-tensorflow-mnist-tensorflow-mnist.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- cron: "0 */8 * * *"
66
pull_request:
77
branches:
8+
- main
9+
- sdk-preview
810
- sdk-preview
911
paths:
1012
- sdk/**
@@ -17,7 +19,7 @@ jobs:
1719
- name: check out repo
1820
uses: actions/checkout@v2
1921
with:
20-
ref: sdk-preview
22+
ref: sdk-preview
2123
- name: setup python
2224
uses: actions/setup-python@v2
2325
with:
@@ -27,7 +29,7 @@ jobs:
2729
- name: azure login
2830
uses: azure/login@v1
2931
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
32+
creds: ${{secrets.AZ_CREDS}}
3133
- name: setup SDK
3234
run: bash setup.sh
3335
working-directory: sdk
@@ -39,7 +41,7 @@ jobs:
3941
- name: run jobs/single-step/tensorflow/mnist/tensorflow-mnist.ipynb
4042
run: |
4143
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" tensorflow-mnist.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" tensorflow-mnist.ipynb
44+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" tensorflow-mnist.ipynb
4345
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" tensorflow-mnist.ipynb
4446
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" tensorflow-mnist.ipynb
4547

‎.github/workflows/sdk-resources-compute-compute.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
workflow_dispatch:
44
pull_request:
55
branches:
6+
- main
7+
- sdk-preview
68
- sdk-preview
79
paths:
810
- sdk/**
@@ -15,7 +17,7 @@ jobs:
1517
- name: check out repo
1618
uses: actions/checkout@v2
1719
with:
18-
ref: sdk-preview
20+
ref: sdk-preview
1921
- name: setup python
2022
uses: actions/setup-python@v2
2123
with:
@@ -25,7 +27,7 @@ jobs:
2527
- name: azure login
2628
uses: azure/login@v1
2729
with:
28-
creds: ${{secrets.AZ_AE_CREDS}}
30+
creds: ${{secrets.AZ_CREDS}}
2931
- name: setup SDK
3032
run: bash setup.sh
3133
working-directory: sdk
@@ -37,7 +39,7 @@ jobs:
3739
- name: run resources/compute/compute.ipynb
3840
run: |
3941
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" compute.ipynb
40-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" compute.ipynb
42+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" compute.ipynb
4143
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" compute.ipynb
4244
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" compute.ipynb
4345

‎.github/workflows/sdk-resources-workspace-workspace.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: sdk-resources-workspace-workspace
22
on:
33
workflow_dispatch:
4-
schedule:
5-
- cron: "0 */8 * * *"
64
pull_request:
75
branches:
6+
- main
7+
- sdk-preview
88
- sdk-preview
99
paths:
1010
- sdk/**
@@ -17,7 +17,7 @@ jobs:
1717
- name: check out repo
1818
uses: actions/checkout@v2
1919
with:
20-
ref: sdk-preview
20+
ref: sdk-preview
2121
- name: setup python
2222
uses: actions/setup-python@v2
2323
with:
@@ -27,7 +27,7 @@ jobs:
2727
- name: azure login
2828
uses: azure/login@v1
2929
with:
30-
creds: ${{secrets.AZ_AE_CREDS}}
30+
creds: ${{secrets.AZ_CREDS}}
3131
- name: setup SDK
3232
run: bash setup.sh
3333
working-directory: sdk
@@ -39,12 +39,12 @@ jobs:
3939
- name: run resources/workspace/workspace.ipynb
4040
run: |
4141
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" workspace.ipynb
42-
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples-rg/g" workspace.ipynb
42+
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" workspace.ipynb
4343
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" workspace.ipynb
4444
sed -i -e "s/InteractiveBrowserCredential/AzureCliCredential/g" workspace.ipynb
4545
4646
# generate a random workspace name
47-
sed -i -e "s/mlw-basic-prod/mlw-basic-prod-$(echo $RANDOM | md5sum | head -c 10)/g" workspace.ipynb
47+
# sed -i -e "s/mlw-basic-prod/mlw-basic-prod-$(echo $RANDOM | md5sum | head -c 10)/g" workspace.ipynb
4848
4949
# skip other workpace creation commands for now
5050
sed -i -e "s/ml_client.begin_create_or_update(ws_with_existing)/# ml_client.begin_create_or_update(ws_with_existing)/g" workspace.ipynb

0 commit comments

Comments
 (0)
Please sign in to comment.