This is an automated email from the ASF dual-hosted git repository. chesnay pushed a commit to branch v3.0 in repository https://gitbox.apache.org/repos/asf/flink-connector-elasticsearch.git
commit 19c32d1cf7f60a4e8d180f2ea8b853a13a92f2fc Author: Chesnay Schepler <[email protected]> AuthorDate: Tue Nov 8 13:57:07 2022 +0100 [FLINK-29935][ci] Setup weekly run against 1.16/1.17-SNAPSHOT --- .github/workflows/weekly.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml new file mode 100644 index 0000000..260c325 --- /dev/null +++ b/.github/workflows/weekly.yml @@ -0,0 +1,32 @@ +################################################################################ +# 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 flink-connector-elasticsearch +on: + schedule: + - cron: "0 0 * * 0" +jobs: + compile_and_test: + strategy: + matrix: + flink: [1.16-SNAPSHOT, 1.17-SNAPSHOT] + uses: ./.github/workflows/ci.yml + with: + flink_version: ${{ matrix.flink }} + flink_url: https://s3.amazonaws.com/flink-nightly/flink-${{ matrix.flink }}-bin-scala_2.12.tgz + cache_flink_binary: false
