Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
9a9b0e4
Add a README section about supported versions
henrymercer Jan 26, 2024
a2c5130
Update changelog and version after v3.23.2
github-actions[bot] Jan 26, 2024
5c9716f
Update checked-in dependencies
github-actions[bot] Jan 26, 2024
738d232
Merge pull request #2101 from github/mergeback/v3.23.2-to-main-b7bf0a3e
henrymercer Jan 26, 2024
25f779c
Merge pull request #2100 from github/henrymercer/readme-note-on-suppo…
henrymercer Jan 26, 2024
cfefe3a
Clarify that ref inputs are ignored for forks
jsoref Jan 29, 2024
202c383
Merge pull request #2104 from jsoref/clarify-ignored-inputs
henrymercer Jan 30, 2024
eab49d7
Bump the npm group with 4 updates (#2103)
dependabot[bot] Jan 30, 2024
e33271d
Python: No dep installation by default for everyone
RasmusWL Jan 30, 2024
68d3483
Bump minor version
RasmusWL Jan 30, 2024
8c22ec9
Update changelog
RasmusWL Jan 30, 2024
ec42edc
Refactoring: Create interface for config initialization
henrymercer Jan 30, 2024
d2e867f
Refactoring: Introduce common method to stub a config
henrymercer Jan 30, 2024
401f9d6
Add experimental `build-mode` input to `init` Action
henrymercer Jan 22, 2024
0166a8a
Add build mode to configuration
henrymercer Jan 30, 2024
55c1fd5
Introduce `codeql.supportsFeature`
henrymercer Jan 30, 2024
d982a14
Pass build mode to `database init` when set
henrymercer Jan 30, 2024
463930c
Add PR check for none build mode
henrymercer Jan 31, 2024
e345133
Merge pull request #2107 from github/henrymercer/refactor-config
henrymercer Jan 31, 2024
254b53d
Merge branch 'main' into henrymercer/build-mode-input
henrymercer Jan 31, 2024
f7d5324
Update wording for CHANGELOG.md
RasmusWL Feb 1, 2024
b58c2f6
Detail requirements for different build modes
henrymercer Feb 1, 2024
483bef1
Merge pull request #2106 from github/rasmuswl/default-no-dep-inst
RasmusWL Feb 1, 2024
81eb6b2
Merge pull request #2108 from github/henrymercer/build-mode-input
henrymercer Feb 2, 2024
f9dea84
Status report: Handle failures determining disk usage
henrymercer Feb 2, 2024
2db0327
Merge pull request #2112 from github/henrymercer/status-report-handle…
henrymercer Feb 2, 2024
78d6c8e
Update changelog for v3.24.0
github-actions[bot] Feb 2, 2024
e8893c5
Merge pull request #2113 from github/update-v3.24.0-2db032717
henrymercer Feb 2, 2024
c004a3e
Revert "Update version and changelog for v2.23.2"
github-actions[bot] Feb 2, 2024
7dde705
Revert "Update checked-in dependencies"
github-actions[bot] Feb 2, 2024
5b498ba
Merge remote-tracking branch 'origin/releases/v3' into backport-v2.24…
github-actions[bot] Feb 2, 2024
3ed798e
Update version and changelog for v2.24.0
github-actions[bot] Feb 2, 2024
f822fa3
Update checked-in dependencies
github-actions[bot] Feb 2, 2024
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
Prev Previous commit
Next Next commit
Add PR check for none build mode
  • Loading branch information
henrymercer committed Jan 31, 2024
commit 463930c71f25231ce271d1feff3ba27f837b84be
85 changes: 85 additions & 0 deletions .github/workflows/__build-mode-none.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions pr-checks/checks/build-mode-none.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Build mode none"
description: "An end-to-end integration test of a Java repository built using 'build-mode: none'"
operatingSystems: ["ubuntu"]
versions: ["latest", "nightly-latest"]
steps:
- uses: ./../action/init
id: init
with:
build-mode: none
db-location: "${{ runner.temp }}/customDbLocation"
languages: java
tools: ${{ steps.prepare-test.outputs.tools-url }}

- name: Validate database build mode
run: |
metadata_path="$RUNNER_TEMP/customDbLocation/java/codeql-database.yml"
build_mode=$(yq eval '.buildMode' "$metadata_path")
if [[ "$build_mode" != "none" ]]; then
echo "Expected build mode to be 'none' but was $build_mode"
exit 1
fi

- uses: ./../action/autobuild
- uses: ./../action/analyze