36 lines
1,015 B
YAML
36 lines
1,015 B
YAML
name: "Scaling reserved RAM"
|
|
description: "An end-to-end integration test of a multi-language repository with the scaling_reserved_ram feature flag enabled"
|
|
operatingSystems: ["macos", "ubuntu"]
|
|
excludeOsAndVersionCombination: [
|
|
# Known failure for Swift on Linux before CLI v2.17.4.
|
|
[ "ubuntu", "stable-20230403" ],
|
|
[ "ubuntu", "stable-v2.13.5" ],
|
|
[ "ubuntu", "stable-v2.14.6" ],
|
|
[ "ubuntu", "stable-v2.15.5" ],
|
|
[ "ubuntu", "stable-v2.16.6" ],
|
|
]
|
|
env:
|
|
CODEQL_ACTION_SCALING_RESERVED_RAM: true
|
|
steps:
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ">=1.21.0"
|
|
|
|
- uses: ./../action/init
|
|
id: init
|
|
with:
|
|
db-location: "${{ runner.temp }}/customDbLocation"
|
|
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
|
|
|
- uses: ./../action/.github/actions/setup-swift
|
|
with:
|
|
codeql-path: ${{ steps.init.outputs.codeql-path }}
|
|
|
|
- name: Build code
|
|
shell: bash
|
|
run: ./build.sh
|
|
|
|
- uses: ./../action/analyze
|
|
id: analysis
|
|
with:
|
|
upload-database: false
|