Use bnd-maven-plugin to fix osgi manifest headers (#28) #63
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: Run tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| linux: | |
| name: Linux test | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| fetch-depth: 0 | |
| - name: Install Zulu JDK 7 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: zulu | |
| java-version: '7' | |
| cache: maven | |
| - name: Setup Temurin JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| cache: maven | |
| - name: Build (mvn verify on native linux/amd64) | |
| run: | | |
| ./mvnw -B -V \ | |
| -Darch.id=amd64 \ | |
| -Dnative.cc=gcc \ | |
| verify |