Skip to content

Commit 2bffda8

Browse files
ebyhrwendigo
authored andcommitted
Remove Greenplum release step and tests
1 parent 0e21e53 commit 2bffda8

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ jobs:
7373
)
7474
single_arch=(
7575
testing/accumulo
76-
testing/gpdb-6
7776
testing/hdp3.1-hive
7877
testing/hdp3.1-hive-kerberized
7978
testing/hdp3.1-hive-kerberized-2

bin/test.sh

-20
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ function run_hive_transactional_tests() {
5757
true
5858
}
5959

60-
function check_gpdb() {
61-
environment_compose exec gpdb su gpadmin -l -c "pg_isready"
62-
}
63-
6460
function check_spark() {
6561
environment_compose exec spark curl -f http://localhost:10213
6662
}
@@ -83,13 +79,6 @@ function check_health() {
8379
test "$status" == "healthy"
8480
}
8581

86-
function run_gpdb_tests() {
87-
environment_compose exec gpdb su gpadmin -l -c "psql -c 'CREATE TABLE foo (a INT) DISTRIBUTED RANDOMLY'" &&
88-
environment_compose exec gpdb su gpadmin -l -c "psql -c 'INSERT INTO foo VALUES (54)'" &&
89-
environment_compose exec gpdb su gpadmin -l -c "psql -c 'SELECT a FROM foo'" &&
90-
true
91-
}
92-
9382
function run_kerberos_tests() {
9483
sleep 60
9584
environment_compose exec kerberos create_principal -o -p tola -k tola.keytab
@@ -193,15 +182,6 @@ for ARCH in "${platforms[@]}"; do
193182
retry check_health
194183
elif [[ ${ENVIRONMENT} == "kerberos" ]]; then
195184
run_kerberos_tests
196-
elif [[ ${ENVIRONMENT} == *"gpdb"* ]]; then
197-
# wait until gpdb process is started
198-
retry check_gpdb
199-
200-
# run tests
201-
set -x
202-
set +e
203-
sleep 10
204-
run_gpdb_tests
205185
elif [[ ${ENVIRONMENT} == *"hive"* ]]; then
206186
# wait until hadoop processes is started
207187
retry check_hadoop

0 commit comments

Comments
 (0)