Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ jobs:
include:
- image: accumulo
test: accumulo
- image: dns
platforms: linux/amd64,linux/arm64
test: dns
- image: centos7-oj17
platforms: linux/amd64,linux/arm64
- image: centos7-oj17-openldap-referrals
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ jobs:
testing/centos7-oj17
testing/centos7-oj17-openldap
testing/centos7-oj17-openldap-referrals
testing/dns
testing/hive3.1-hive
testing/kerberos
testing/phoenix5
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions bin/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,6 @@ for ARCH in "${platforms[@]}"; do

if [[ ${ENVIRONMENT} == *"accumulo"* ]]; then
retry check_health accumulo
elif [[ ${ENVIRONMENT} == *"dns"* ]]; then
retry check_health dns
elif [[ ${ENVIRONMENT} == "kerberos" ]]; then
run_kerberos_tests
elif [[ ${ENVIRONMENT} == *"gpdb"* ]]; then
Expand Down
2 changes: 1 addition & 1 deletion testing/spark3-delta/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ENV PATH="${SPARK_HOME}/bin:${PATH}"
EXPOSE 10213

HEALTHCHECK --interval=10s --timeout=5s --start-period=10s \
CMD curl -f http://localhost:10213/
CMD curl -f http://127.0.0.1:10213/
CMD spark-submit \
--master "local[*]" \
--class org.apache.spark.sql.hive.thriftserver.HiveThriftServer2 \
Expand Down
2 changes: 1 addition & 1 deletion testing/spark3-hudi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ENV PATH="${SPARK_HOME}/bin:${PATH}"
EXPOSE 10213

HEALTHCHECK --interval=10s --timeout=5s --start-period=10s \
CMD curl -f http://localhost:10213/
CMD curl -f http://127.0.0.1:10213/
CMD spark-submit \
--master "local[*]" \
--class org.apache.spark.sql.hive.thriftserver.HiveThriftServer2 \
Expand Down
2 changes: 1 addition & 1 deletion testing/spark3-iceberg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ENV PATH="${SPARK_HOME}/bin:${PATH}"
RUN useradd -ms /bin/bash hive

HEALTHCHECK --interval=10s --timeout=5s --start-period=10s \
CMD curl -f http://localhost:10213/
CMD curl -f http://127.0.0.1:10213/
CMD spark-submit \
--master "local[*]" \
--class org.apache.spark.sql.hive.thriftserver.HiveThriftServer2 \
Expand Down