Skip to content

Commit ab9aa50

Browse files
committed
Add integration test for scaling_reserved_ram feature flag
1 parent 28e070c commit ab9aa50

File tree

2 files changed

+122
-0
lines changed

2 files changed

+122
-0
lines changed

Diff for: .github/workflows/__scaling-reserved-ram.yml

+98
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: pr-checks/checks/scaling-reserved-ram.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "Scaling reserved RAM"
2+
description: "An end-to-end integration test of a multi-language repository with the scaling_reserved_ram feature flag enabled"
3+
operatingSystems: ["ubuntu", "macos"]
4+
env:
5+
CODEQL_ACTION_SCALING_RESERVED_RAM: true
6+
steps:
7+
- uses: ./../action/init
8+
id: init
9+
with:
10+
db-location: "${{ runner.temp }}/customDbLocation"
11+
tools: ${{ steps.prepare-test.outputs.tools-url }}
12+
13+
- uses: ./../action/.github/actions/setup-swift
14+
with:
15+
codeql-path: ${{ steps.init.outputs.codeql-path }}
16+
17+
- name: Build code
18+
shell: bash
19+
run: ./build.sh
20+
21+
- uses: ./../action/analyze
22+
id: analysis
23+
with:
24+
upload-database: false

0 commit comments

Comments
 (0)