You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2022/05/02 11:21:53 UTC

[tika] branch branch_1x updated: add github workflows to branch_1x

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch branch_1x
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/branch_1x by this push:
     new 5b016cbd8 add github workflows to branch_1x
5b016cbd8 is described below

commit 5b016cbd8708f50dc5db5f8f846f0498f6a14bc3
Author: tallison <ta...@apache.org>
AuthorDate: Mon May 2 07:21:40 2022 -0400

    add github workflows to branch_1x
---
 .github/workflows/branch_1x-jdk11-build.yml | 38 +++++++++++++++++++++++++++++
 .github/workflows/branch_1x-jdk8-build.yml  | 38 +++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/.github/workflows/branch_1x-jdk11-build.yml b/.github/workflows/branch_1x-jdk11-build.yml
new file mode 100644
index 000000000..898d836ca
--- /dev/null
+++ b/.github/workflows/branch_1x-jdk11-build.yml
@@ -0,0 +1,38 @@
+#
+# 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: branch_1x jdk11 build
+
+on:
+  push:
+    branches: [ main ]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        java: [ '11' ]
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: Set up JDK ${{ matrix.java }}
+        uses: actions/setup-java@v1
+        with:
+          java-version: ${{ matrix.java }}
+      - name: Build with Maven
+        run: mvn clean javadoc:aggregate install
diff --git a/.github/workflows/branch_1x-jdk8-build.yml b/.github/workflows/branch_1x-jdk8-build.yml
new file mode 100644
index 000000000..f47126eef
--- /dev/null
+++ b/.github/workflows/branch_1x-jdk8-build.yml
@@ -0,0 +1,38 @@
+#
+# 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: branch_1x jdk8 build
+
+on:
+  push:
+    branches: [ branch_1x ]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        java: [ '1.8' ]
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: Set up JDK ${{ matrix.java }}
+        uses: actions/setup-java@v1
+        with:
+          java-version: ${{ matrix.java }}
+      - name: Build with Maven
+        run: mvn clean javadoc:aggregate install