This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git
The following commit(s) were added to refs/heads/main by this push:
new cc317bd Update Dockerfile.iotdb-server to use java 17 (#100)
cc317bd is described below
commit cc317bdf5bfedf86a58bcd1fd1238855dcca8b63
Author: Haonan <[email protected]>
AuthorDate: Wed Jul 17 01:07:19 2024 +0800
Update Dockerfile.iotdb-server to use java 17 (#100)
---
.github/workflows/e2e.yml | 6 ++----
test/e2e/Dockerfile.iotdb-server | 2 +-
2 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 0d1c6f5..8ef256f 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -20,10 +20,8 @@ jobs:
build:
name: e2e test
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest]
+ runs-on: ubuntu-latest
+
steps:
- name: Check out code into the Go module directory
diff --git a/test/e2e/Dockerfile.iotdb-server b/test/e2e/Dockerfile.iotdb-server
index 4fbd70a..60ea62e 100644
--- a/test/e2e/Dockerfile.iotdb-server
+++ b/test/e2e/Dockerfile.iotdb-server
@@ -17,7 +17,7 @@
# under the License.
#
-FROM openjdk:11-jre-slim
+FROM eclipse-temurin:17-jre-focal
RUN apt update \
&& apt install -y procps && apt clean