Skip to content

Commit

Permalink
Disable CodeQL by default (#2689)
Browse files Browse the repository at this point in the history
- CodeQL is causing frequent build timeouts (with no logs)
  • Loading branch information
mikeharder authored Nov 22, 2023
1 parent 2ca9cbe commit dbd0149
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions eng/pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ trigger:

pr: none

variables:
- template: templates/variables/globals.yml

jobs:
- job: npm_stable
displayName: Npm publish
Expand Down
3 changes: 3 additions & 0 deletions eng/pipelines/pr-tryit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ pr:
- main
- release/*

variables:
- template: templates/variables/globals.yml

jobs:
- job: publish_playground
displayName: Publish playground
Expand Down
3 changes: 3 additions & 0 deletions eng/pipelines/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ pr:
- main
- release/*

variables:
- template: templates/variables/globals.yml

jobs:
- job: Build_And_Test
displayName: Build And Test
Expand Down
3 changes: 3 additions & 0 deletions eng/pipelines/templates/variables/globals.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
variables:
# Disable CodeQL by default to prevent build timeouts
Codeql.SkipTaskAutoInjection: true

0 comments on commit dbd0149

Please sign in to comment.