Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable CodeQL until the hang is fixed #1452

Merged
merged 4 commits into from
Jul 9, 2024
Merged
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
30 changes: 24 additions & 6 deletions azure-pipelines/signing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ extends:
sourceAnalysisPool:
name: AzurePipelines-EO
image: 1ESPT-Windows2022
codeql:
compiled:
enabled: false
justificationForDisabling: 'CodeQL causes the build to hang. See https://dev.azure.com/twcdot/Data/_workitems/edit/128379 . Turn CodeQL back on when it is fixed.'
stages:
- stage: stage
displayName: 'Build and Sign vcpkg'
Expand All @@ -70,13 +74,13 @@ extends:
- ${{ if ne(parameters.VcpkgBaseVersionOverride, 'default') }}:
- name: VCPKG_INITIAL_BASE_VERSION
value: ${{parameters.VcpkgBaseVersionOverride}}
- name: Codeql.BuildIdentifier
value: vcpkg_ECMAScript
- name: Codeql.Language
value: javascript
pool:
name: 'VSEngSS-MicroBuild2022-1ES'
templateContext:
sdl:
codeql:
language: javascript
buildIdentifier: vcpkg_ECMAScript
mb:
signing:
enabled: true
Expand Down Expand Up @@ -211,6 +215,10 @@ extends:
VCPKG_STANDALONE_BUNDLE_SHA: $[ dependencies.arch_independent.outputs['shas.VCPKG_STANDALONE_BUNDLE_SHA'] ]
VCPKG_BASE_VERSION: $[ dependencies.arch_independent.outputs['versions.VCPKG_BASE_VERSION'] ]
templateContext:
sdl:
codeql:
language: cpp
buildIdentifier: vcpkg_cpp_macos
mb:
signing:
enabled: false
Expand Down Expand Up @@ -240,6 +248,10 @@ extends:
VCPKG_STANDALONE_BUNDLE_SHA: $[ dependencies.arch_independent.outputs['shas.VCPKG_STANDALONE_BUNDLE_SHA'] ]
VCPKG_BASE_VERSION: $[ dependencies.arch_independent.outputs['versions.VCPKG_BASE_VERSION'] ]
templateContext:
sdl:
codeql:
language: cpp
buildIdentifier: vcpkg_cpp_glibc
mb:
signing:
enabled: false
Expand Down Expand Up @@ -273,6 +285,10 @@ extends:
VCPKG_STANDALONE_BUNDLE_SHA: $[ dependencies.arch_independent.outputs['shas.VCPKG_STANDALONE_BUNDLE_SHA'] ]
VCPKG_BASE_VERSION: $[ dependencies.arch_independent.outputs['versions.VCPKG_BASE_VERSION'] ]
templateContext:
sdl:
codeql:
language: cpp
buildIdentifier: vcpkg_cpp_muslc
mb:
signing:
enabled: false
Expand Down Expand Up @@ -309,9 +325,11 @@ extends:
VCPKG_STANDALONE_BUNDLE_SHA: $[ dependencies.arch_independent.outputs['shas.VCPKG_STANDALONE_BUNDLE_SHA'] ]
VCPKG_BASE_VERSION: $[ dependencies.arch_independent.outputs['versions.VCPKG_BASE_VERSION'] ]
VCPKG_FULL_VERSION: $[ dependencies.arch_independent.outputs['versions.VCPKG_FULL_VERSION'] ]
Codeql.BuildIdentifier: vcpkg_cpp
Codeql.Language: cpp
templateContext:
sdl:
codeql:
language: cpp
buildIdentifier: vcpkg_cpp
mb:
signing:
enabled: true
Expand Down
Loading