Skip to content
This repository was archived by the owner on Jan 10, 2026. It is now read-only.

Commit f01850c

Browse files
committed
add build commands
1 parent 82f2cf1 commit f01850c

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/codeql.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- language: actions
4747
build-mode: none
4848
- language: java-kotlin
49-
build-mode: none # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too.
49+
build-mode: manual # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too.
5050
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
5151
# Use `c-cpp` to analyze code written in C, C++ or both
5252
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
@@ -84,15 +84,16 @@ jobs:
8484
# to build your code.
8585
# ℹ️ Command-line programs to run using the OS shell.
8686
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
87-
- if: matrix.build-mode == 'manual'
87+
- name: Install ChimeSMALibrary Parent POM
88+
if: matrix.build-mode == 'manual'
8889
shell: bash
89-
run: |
90-
echo 'If you are using a "manual" build mode for one or more of the' \
91-
'languages you are analyzing, replace this with the commands to build' \
92-
'your code, for example:'
93-
echo ' make bootstrap'
94-
echo ' make release'
95-
exit 1
90+
working-directory: ./ChimeSMALibrary
91+
run: mvn -N install --no-transfer-progress
92+
93+
- name: Build up all the libraries
94+
if: matrix.build-mode == 'manual'
95+
shell: bash
96+
run: mvn -B install -DskipTests --no-transfer-progress
9697

9798
- name: Perform CodeQL Analysis
9899
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)