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:22:46 UTC

[tika] branch main updated: remove branch_1x workflows from main branch

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

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


The following commit(s) were added to refs/heads/main by this push:
     new faa2f47e8 remove branch_1x workflows from main branch
faa2f47e8 is described below

commit faa2f47e8b68dd0a7d63423f6e28224e308d19fd
Author: tallison <ta...@apache.org>
AuthorDate: Mon May 2 07:22:39 2022 -0400

    remove branch_1x workflows from main branch
---
 .github/workflows/branch_1x-jdk11-build.yml | 38 -----------------------------
 .github/workflows/branch_1x-jdk8-build.yml  | 38 -----------------------------
 2 files changed, 76 deletions(-)

diff --git a/.github/workflows/branch_1x-jdk11-build.yml b/.github/workflows/branch_1x-jdk11-build.yml
deleted file mode 100644
index 898d836ca..000000000
--- a/.github/workflows/branch_1x-jdk11-build.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# 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
deleted file mode 100644
index f47126eef..000000000
--- a/.github/workflows/branch_1x-jdk8-build.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# 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