From db2031a45ffc600ac56ef4ea544df870d0c9e448 Mon Sep 17 00:00:00 2001 From: "Zheng, Qi" Date: Mon, 27 Feb 2023 10:47:13 +0800 Subject: [PATCH] [ci] Fix typo on netty demo ci --- .github/workflows/demo_test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/demo_test.yml b/.github/workflows/demo_test.yml index 63e3fa07..ad43f1ce 100644 --- a/.github/workflows/demo_test.yml +++ b/.github/workflows/demo_test.yml @@ -646,7 +646,7 @@ jobs: sleep ${{ env.nap_time }}; docker exec ${{ github.job }} bash -c "curl -s http://localhost:8080/actuator/readiness | grep -v DOWN" - Netty_UT_test: + Netty_UT_test: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v1 @@ -658,6 +658,9 @@ jobs: container-name: ${{ github.job }} build-envs: 'OCCLUM_RELEASE_BUILD=1' + - name: Install OpenJDK 11 (Glibc) + run: docker exec ${{ github.job }} bash -c "apt update && apt install -y openjdk-11-jdk" + - name: Download and compile netty unit test demos run: docker exec ${{ github.job }} bash -c "cd /root/occlum/demos/netty_ut && ./build.sh"