29 lines
826 B
YAML
29 lines
826 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"
|
|
# TODO: Add ubuntu back for `nightly-latest` and `latest` once CLI v2.17.4 is available.
|
|
operatingSystems: ["macos"]
|
|
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
|