Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
CI: Reuse check schema (#1455)
Browse files Browse the repository at this point in the history
* add check schema
* true to 'true'
* numbers to 'numbers'
* Skip azure configs

Co-authored-by: Kushashwa Ravi Shrimali <kushashwaravishrimali@gmail.com>
Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
4 people authored Nov 5, 2022
1 parent 6e95997 commit eb2113a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .azure-pipelines/gpu-example-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ trigger:
pr:
branches:
include: ["master"]
autoCancel: true
drafts: true
autoCancel: 'true'
drafts: 'true'

jobs:
- template: testing-template.yml
Expand Down
4 changes: 2 additions & 2 deletions .azure-pipelines/gpu-special-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ pr:
jobs:
- job: special
# how long to run the job before automatically cancelling
timeoutInMinutes: 45
timeoutInMinutes: "45"
# how much time to give 'run always even if cancelled tasks' before stopping them
cancelTimeoutInMinutes: 2
cancelTimeoutInMinutes: "2"

pool: lit-rtx-3090
variables:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/ci-schema.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Check schema

on:
push:
branches: [master, "release/*"]
pull_request:
branches: [master, "release/*"]

jobs:
check-schema:
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.4.0
with:
azure-dir: ''

0 comments on commit eb2113a

Please sign in to comment.