updated gitlab ci script #2688
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: CI Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Kustvakt | |
| uses: actions/checkout@v4 | |
| with: | |
| path: Kustvakt | |
| - name: Checkout Krill | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: KorAP/Krill | |
| path: Krill | |
| - name: Checkout Koral | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: KorAP/Koral | |
| path: Koral | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - name: Build and install Krill | |
| run: mvn --file Krill/pom.xml install | |
| - name: Build and install Koral | |
| run: mvn --file Koral/pom.xml install | |
| - name: Build and package Kustvakt | |
| run: mvn clean --file Kustvakt/pom.xml package |