This is an automated email from the ASF dual-hosted git repository. tallison pushed a commit to branch add-windows-build in repository https://gitbox.apache.org/repos/asf/tika.git
commit 20e7ad1d4c57bcf459f5ddace5d466b31170c2f2 Author: tallison <[email protected]> AuthorDate: Wed Nov 26 08:47:01 2025 -0500 try to add a windows build to our github ci --- .github/workflows/main-jdk17-windows-build.yml | 41 ++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/.github/workflows/main-jdk17-windows-build.yml b/.github/workflows/main-jdk17-windows-build.yml new file mode 100644 index 000000000..b8f764d1d --- /dev/null +++ b/.github/workflows/main-jdk17-windows-build.yml @@ -0,0 +1,41 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +name: main jdk17 windows build + +on: + pull_request: + branches: [ main ] + push: + branches: [ main ] + +jobs: + build: + runs-on: windows-latest + strategy: + matrix: + java: [ '17' ] + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK ${{ matrix.java }} + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: ${{ matrix.java }} + - name: Build with Maven + run: mvn clean test install javadoc:aggregate
