PR Checks: Test codeql-bundle.tar.gz (#1822)

This commit is contained in:
Angela P Wen 2023-08-03 08:38:21 -07:00 committed by GitHub
parent a98b9bd46b
commit 1f63aba653
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
37 changed files with 187 additions and 2 deletions

View file

@ -63,6 +63,10 @@ for file in os.listdir('checks'):
'version': version
})
useAllPlatformBundle = "false" # Default to false
if checkSpecification.get('useAllPlatformBundle'):
useAllPlatformBundle = checkSpecification['useAllPlatformBundle']
steps = [
{
'name': 'Check out repository',
@ -73,7 +77,8 @@ for file in os.listdir('checks'):
'id': 'prepare-test',
'uses': './.github/actions/prepare-test',
'with': {
'version': '${{ matrix.version }}'
'version': '${{ matrix.version }}',
'use-all-platform-bundle': useAllPlatformBundle
}
},
# We don't support Swift on Windows or prior versions of the CLI.