This is an automated email from the ASF dual-hosted git repository.
chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new d17b0ba [FLINK-26994][ci] Merge Core/Libraries CI profiles
d17b0ba is described below
commit d17b0ba0487a421d1dc00c5264ef820908f54658
Author: Chesnay Schepler <[email protected]>
AuthorDate: Fri Apr 1 22:18:22 2022 +0200
[FLINK-26994][ci] Merge Core/Libraries CI profiles
---
tools/azure-pipelines/jobs-template.yml | 2 --
tools/ci/stage.sh | 15 ++-------------
2 files changed, 2 insertions(+), 15 deletions(-)
diff --git a/tools/azure-pipelines/jobs-template.yml
b/tools/azure-pipelines/jobs-template.yml
index da7181b..6da14e6 100644
--- a/tools/azure-pipelines/jobs-template.yml
+++ b/tools/azure-pipelines/jobs-template.yml
@@ -90,8 +90,6 @@ jobs:
module: core
python:
module: python
- libraries:
- module: libraries
table:
module: table
connectors:
diff --git a/tools/ci/stage.sh b/tools/ci/stage.sh
index 164b7db..7c3f96d 100755
--- a/tools/ci/stage.sh
+++ b/tools/ci/stage.sh
@@ -20,7 +20,6 @@
STAGE_COMPILE="compile"
STAGE_CORE="core"
STAGE_PYTHON="python"
-STAGE_LIBRARIES="libraries"
STAGE_TABLE="table"
STAGE_CONNECTORS="connectors"
STAGE_KAFKA_GELLY="kafka/gelly"
@@ -48,9 +47,7 @@ flink-streaming-scala,\
flink-metrics,\
flink-metrics/flink-metrics-core,\
flink-external-resources,\
-flink-external-resources/flink-external-resource-gpu"
-
-MODULES_LIBRARIES="\
+flink-external-resources/flink-external-resource-gpu,\
flink-libraries/flink-cep,\
flink-libraries/flink-cep-scala,\
flink-libraries/flink-state-processing-api"
@@ -139,9 +136,6 @@ function get_compile_modules_for_stage() {
(${STAGE_CORE})
echo "-pl $MODULES_CORE -am"
;;
- (${STAGE_LIBRARIES})
- echo "-pl $MODULES_LIBRARIES -am"
- ;;
(${STAGE_TABLE})
echo "-pl $MODULES_TABLE -am"
;;
@@ -173,27 +167,22 @@ function get_test_modules_for_stage() {
local stage=$1
local modules_core=$MODULES_CORE
- local modules_libraries=$MODULES_LIBRARIES
local modules_table=$MODULES_TABLE
local modules_kafka_gelly=$MODULES_KAFKA_GELLY
local modules_connectors=$MODULES_CONNECTORS
local modules_tests=$MODULES_TESTS
local negated_core=\!${MODULES_CORE//,/,\!}
- local negated_libraries=\!${MODULES_LIBRARIES//,/,\!}
local negated_table=\!${MODULES_TABLE//,/,\!}
local negated_kafka_gelly=\!${MODULES_KAFKA_GELLY//,/,\!}
local negated_connectors=\!${MODULES_CONNECTORS//,/,\!}
local negated_tests=\!${MODULES_TESTS//,/,\!}
- local
modules_misc="$negated_core,$negated_libraries,$negated_table,$negated_connectors,$negated_kafka_gelly,$negated_tests"
+ local
modules_misc="$negated_core,$negated_table,$negated_connectors,$negated_kafka_gelly,$negated_tests"
local
modules_finegrained_resource_management=$MODULES_FINEGRAINED_RESOURCE_MANAGEMENT
case ${stage} in
(${STAGE_CORE})
echo "-pl $modules_core"
;;
- (${STAGE_LIBRARIES})
- echo "-pl $modules_libraries"
- ;;
(${STAGE_TABLE})
echo "-pl $modules_table"
;;