Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
with:
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4
- name: Autobuild (manual core)
working-directory: core
run: ./mvnw clean install -DskipTests

- name: Autobuild
uses: github/codeql-action/autobuild@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4
- name: Autobuild (manual eclipse)
working-directory: eclipse
run: ./mvnw clean install -DskipTests

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4
24 changes: 24 additions & 0 deletions .github/workflows/eclipse-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,30 @@ jobs:

steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
- name: Install Toolchain JDK
uses: battila7/jdk-via-jabba@v1
with:
jdk: zulu@1.17.0-0
javaHomeEnvironmentVariable: TOOLCHAIN_JDK
- name: Set up Toolchain
shell: bash
run: |
mkdir --parents $HOME/.m2 \
&& cat << EOF > $HOME/.m2/toolchains.xml
<?xml version="1.0" encoding="UTF-8"?>
<toolchains>
<toolchain>
<type>jdk</type>
<provides>
<version>17</version>
<vendor>zulu</vendor>
</provides>
<configuration>
<jdkHome>${{ env.TOOLCHAIN_JDK }}</jdkHome>
</configuration>
</toolchain>
</toolchains>
EOF
- name: Setup Java ${{ matrix.java }} ${{ matrix.distribution }}
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5
with:
Expand Down
Loading