-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
138 changed files
with
31,120 additions
and
227 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
.github/workflows/cli-assets-component-component_additional_includes.yml
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,67 @@ | ||
# This code is autogenerated. | ||
# Code is generated by running custom script: python3 readme.py | ||
# Any manual changes to this file may cause incorrect behavior. | ||
# Any manual changes will be overwritten if the code is regenerated. | ||
|
||
name: cli-assets-component-component_additional_includes | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "47 9/12 * * *" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- cli/assets/component/component_additional_includes.yml | ||
- infra/bootstrapping/** | ||
- .github/workflows/cli-assets-component-component_additional_includes.yml | ||
- cli/setup.sh | ||
permissions: | ||
id-token: write | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check out repo | ||
uses: actions/checkout@v2 | ||
- name: azure login | ||
uses: azure/login@v1 | ||
with: | ||
client-id: ${{ secrets.OIDC_AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.OIDC_AZURE_TENANT_ID }} | ||
subscription-id: ${{ secrets.OIDC_AZURE_SUBSCRIPTION_ID }} | ||
- name: bootstrap resources | ||
run: | | ||
bash bootstrapping/bootstrap.sh | ||
working-directory: infra | ||
continue-on-error: false | ||
- name: setup-cli | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
bash setup.sh | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: Eagerly cache access tokens for required scopes | ||
run: | | ||
# Workaround for azure-cli's lack of support for ID token refresh | ||
# Taken from: https://github.com/Azure/login/issues/372#issuecomment-2056289617 | ||
# Management | ||
az account get-access-token --scope https://management.azure.com/.default --output none | ||
# ML | ||
az account get-access-token --scope https://ml.azure.com/.default --output none | ||
- 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/component_additional_includes.yml | ||
working-directory: cli |
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,67 @@ | ||
# This code is autogenerated. | ||
# Code is generated by running custom script: python3 readme.py | ||
# Any manual changes to this file may cause incorrect behavior. | ||
# Any manual changes will be overwritten if the code is regenerated. | ||
|
||
name: cli-assets-data-azure-sql-import | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "13 6/12 * * *" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- cli/assets/data/azure-sql-import.yml | ||
- infra/bootstrapping/** | ||
- .github/workflows/cli-assets-data-azure-sql-import.yml | ||
- cli/setup.sh | ||
permissions: | ||
id-token: write | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check out repo | ||
uses: actions/checkout@v2 | ||
- name: azure login | ||
uses: azure/login@v1 | ||
with: | ||
client-id: ${{ secrets.OIDC_AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.OIDC_AZURE_TENANT_ID }} | ||
subscription-id: ${{ secrets.OIDC_AZURE_SUBSCRIPTION_ID }} | ||
- name: bootstrap resources | ||
run: | | ||
bash bootstrapping/bootstrap.sh | ||
working-directory: infra | ||
continue-on-error: false | ||
- name: setup-cli | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
bash setup.sh | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: Eagerly cache access tokens for required scopes | ||
run: | | ||
# Workaround for azure-cli's lack of support for ID token refresh | ||
# Taken from: https://github.com/Azure/login/issues/372#issuecomment-2056289617 | ||
# Management | ||
az account get-access-token --scope https://management.azure.com/.default --output none | ||
# ML | ||
az account get-access-token --scope https://ml.azure.com/.default --output none | ||
- 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"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml data create -f assets/data/azure-sql-import.yml | ||
working-directory: cli |
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
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,67 @@ | ||
# This code is autogenerated. | ||
# Code is generated by running custom script: python3 readme.py | ||
# Any manual changes to this file may cause incorrect behavior. | ||
# Any manual changes will be overwritten if the code is regenerated. | ||
|
||
name: cli-assets-data-cloud-folder-wasbs | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "23 9/12 * * *" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- cli/assets/data/cloud-folder-wasbs.yml | ||
- infra/bootstrapping/** | ||
- .github/workflows/cli-assets-data-cloud-folder-wasbs.yml | ||
- cli/setup.sh | ||
permissions: | ||
id-token: write | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check out repo | ||
uses: actions/checkout@v2 | ||
- name: azure login | ||
uses: azure/login@v1 | ||
with: | ||
client-id: ${{ secrets.OIDC_AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.OIDC_AZURE_TENANT_ID }} | ||
subscription-id: ${{ secrets.OIDC_AZURE_SUBSCRIPTION_ID }} | ||
- name: bootstrap resources | ||
run: | | ||
bash bootstrapping/bootstrap.sh | ||
working-directory: infra | ||
continue-on-error: false | ||
- name: setup-cli | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
bash setup.sh | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: Eagerly cache access tokens for required scopes | ||
run: | | ||
# Workaround for azure-cli's lack of support for ID token refresh | ||
# Taken from: https://github.com/Azure/login/issues/372#issuecomment-2056289617 | ||
# Management | ||
az account get-access-token --scope https://management.azure.com/.default --output none | ||
# ML | ||
az account get-access-token --scope https://ml.azure.com/.default --output none | ||
- 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"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml data create -f assets/data/cloud-folder-wasbs.yml | ||
working-directory: cli |
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
67 changes: 67 additions & 0 deletions
67
.github/workflows/cli-assets-data-data_import_schedule_database_inline.yml
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,67 @@ | ||
# This code is autogenerated. | ||
# Code is generated by running custom script: python3 readme.py | ||
# Any manual changes to this file may cause incorrect behavior. | ||
# Any manual changes will be overwritten if the code is regenerated. | ||
|
||
name: cli-assets-data-data_import_schedule_database_inline | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "30 7/12 * * *" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- cli/assets/data/data_import_schedule_database_inline.yml | ||
- infra/bootstrapping/** | ||
- .github/workflows/cli-assets-data-data_import_schedule_database_inline.yml | ||
- cli/setup.sh | ||
permissions: | ||
id-token: write | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check out repo | ||
uses: actions/checkout@v2 | ||
- name: azure login | ||
uses: azure/login@v1 | ||
with: | ||
client-id: ${{ secrets.OIDC_AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.OIDC_AZURE_TENANT_ID }} | ||
subscription-id: ${{ secrets.OIDC_AZURE_SUBSCRIPTION_ID }} | ||
- name: bootstrap resources | ||
run: | | ||
bash bootstrapping/bootstrap.sh | ||
working-directory: infra | ||
continue-on-error: false | ||
- name: setup-cli | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
bash setup.sh | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: Eagerly cache access tokens for required scopes | ||
run: | | ||
# Workaround for azure-cli's lack of support for ID token refresh | ||
# Taken from: https://github.com/Azure/login/issues/372#issuecomment-2056289617 | ||
# Management | ||
az account get-access-token --scope https://management.azure.com/.default --output none | ||
# ML | ||
az account get-access-token --scope https://ml.azure.com/.default --output none | ||
- 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"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml data create -f assets/data/data_import_schedule_database_inline.yml | ||
working-directory: cli |
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
Oops, something went wrong.