This is an automated email from the ASF dual-hosted git repository.
nicoloboschi pushed a commit to branch branch-4.15
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
The following commit(s) were added to refs/heads/branch-4.15 by this push:
new c09efc611f Remove gradle build on jdk11 on branch-4.15 (#3642)
c09efc611f is described below
commit c09efc611f99c52f1d6771e2af8792ffbbcecab8
Author: Yong Zhang <[email protected]>
AuthorDate: Tue Nov 15 16:28:34 2022 +0800
Remove gradle build on jdk11 on branch-4.15 (#3642)
---
### Motivation
Because we are not using gradle anymore, remove the check
from ci.
---
.github/workflows/gradle-build.yml | 55 --------------------------------------
1 file changed, 55 deletions(-)
diff --git a/.github/workflows/gradle-build.yml
b/.github/workflows/gradle-build.yml
deleted file mode 100644
index 7c9bc7071e..0000000000
--- a/.github/workflows/gradle-build.yml
+++ /dev/null
@@ -1,55 +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: Build with gradle on JDK 11
-
-on:
- push:
- pull_request:
- branches:
- - master
- - branch-*
- paths-ignore:
- - 'site/**'
- - 'site3/**'
- workflow_dispatch:
-
-env:
- GRADLE_ARGS: -Dtestlogger.theme=plain -DtestHideStandardOut=true
-
-jobs:
- test:
-
- runs-on: ubuntu-latest
- timeout-minutes: 60
- steps:
- - name: Checkout
- uses: actions/checkout@v2
-
- - name: Tune Runner VM
- uses: ./.github/actions/tune-runner-vm
-
- - name: Set up JDK 11
- uses: actions/setup-java@v2
- with:
- distribution: 'temurin'
- java-version: 11
-
- - name: Build everything with gradle to validate the build works
- run: ./gradlew build -x signDistTar -x test
\ No newline at end of file