Skip to content

cli-resources-compute-cluster-system-identity #2854

cli-resources-compute-cluster-system-identity

cli-resources-compute-cluster-system-identity #2854

# 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-resources-compute-cluster-system-identity
on:
workflow_dispatch:
schedule:
- cron: "32 9/12 * * *"
pull_request:
branches:
- main
paths:
- cli/resources/compute/cluster-system-identity.yml
- infra/bootstrapping/**
- .github/workflows/cli-resources-compute-cluster-system-identity.yml
- cli/setup.sh
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:
creds: ${{secrets.AZUREML_CREDENTIALS}}
- name: bootstrap resources
run: |
bash bootstrap.sh
working-directory: infra/bootstrapping
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: validate readme
run: |
python check-readme.py "${{ github.workspace }}/cli/resources/compute"
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 compute create -f resources/compute/cluster-system-identity.yml
working-directory: cli