Apache Jena CI (MS Windows) #104
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
| ## Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | |
| name: Apache Jena CI (MS Windows) | |
| on: workflow_dispatch | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-latest] | |
| # "windows" takes up a lot of diskspace due a longstanding JDK issue | |
| # Running on c: seems to work. | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v6.0.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: copy checked out dir to /c/jena for windows-latest | |
| run: bash -c "cp -r /d/a/jena/jena /c/jena" | |
| - name: Build with Maven for windows-latest | |
| run: bash -c "mvn -B --file pom.xml -Dmaven.javadoc.skip=true install" | |
| working-directory: c:\jena |