Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .azure/ipynb-publish.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
trigger:
batch: true
batch: "true"
branches:
include: [ main ]
pr: none
Expand All @@ -10,12 +10,12 @@ jobs:

- job: papermill
# how much time to give 'run always even if cancelled tasks' before stopping them
cancelTimeoutInMinutes: 2
cancelTimeoutInMinutes: "2"
# how long to run the job before automatically cancelling
# When 0 is specified, the maximum limit is used:
# - For 360 minutes (6 hours) on Microsoft-hosted agents with a public project and public repository
# - For 60 minutes on Microsoft-hosted agents with a private project or private repository
timeoutInMinutes: 0
timeoutInMinutes: "0"

pool: azure-gpus-persist
# this need to have installed docker in the base image...
Expand Down
8 changes: 4 additions & 4 deletions .azure/ipynb-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ trigger: none
pr:
branches:
include: [ main ]
autoCancel: true
drafts: true
autoCancel: "true"
drafts: "true"

jobs:

- job: nbval
# how long to run the job before automatically cancelling
timeoutInMinutes: 95
timeoutInMinutes: "95"
# how much time to give 'run always even if cancelled tasks' before stopping them
cancelTimeoutInMinutes: 2
cancelTimeoutInMinutes: "2"

pool: azure-gpus-spot
# this need to have installed docker in the base image...
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_docs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: validate Docs

on: # Trigger the workflow on push or pull request
push:
branches: [main]
# push:
# branches: [main]
pull_request: {}
schedule:
# At the end of every day
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/ci_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
run: |
check-jsonschema .github/workflows/*.yml --builtin-schema "github-workflows"

# - name: Azure Pipelines
# run: |
# check-jsonschema .azure/*.yml --schemafile "https://raw.githubusercontent.com/microsoft/azure-pipelines-vscode/v1.188.1/service-schema.json"
- name: Azure Pipelines
env:
SCHEMA_FILE: https://raw.githubusercontent.com/microsoft/azure-pipelines-vscode/v1.204.0/service-schema.json
run: check-jsonschema .azure/*.yml --schemafile "$SCHEMA_FILE"