Fix local CDT classloading by unsigning bundled Eclipse jars. #150
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Java CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '11' | |
| cache: maven | |
| - name: Install utils submodule | |
| run: mvn -B install -DskipTests --file utils/pom.xml | |
| - name: Install depended jars | |
| run: ./lib_install.sh | |
| - name: Build with Maven | |
| run: mvn -B package --file pom.xml -Dmaven.test.skip=true |