Skip to content

Apache Jena CI (MS Windows) #104

Apache Jena CI (MS Windows)

Apache Jena CI (MS Windows) #104

Workflow file for this run

## 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