This is an automated email from the ASF dual-hosted git repository. ivila pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-trustzone-sdk.git
commit 0703f727cec37f167d1a3b26febb276284b07546 Author: ivila <[email protected]> AuthorDate: Thu May 8 09:10:29 2025 +0800 ci: Update CI Runner fix error "gnutls/gnutls.h: No such file or directory" by newest u-boot Signed-off-by: Zehui Chen <[email protected]> Acked-by: Yuan Zhuang <[email protected]> --- .github/workflows/ci.yml | 2 +- Dockerfile | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0e4a8e..c3e18c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: uses: ./.github/workflows/reuse_test.yml with: runs-on: ubuntu-latest - container: yuanz0/teaclave-trustzone-sdk:ubuntu-24.04 + container: ghcr.io/ivila/teaclave-trustzone-sdk-ci-runner:ubuntu-24.04 # Run test on ARM64 host test-on-arm64-host: diff --git a/Dockerfile b/Dockerfile index 7c88249..d1ab520 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ FROM ubuntu:24.04 MAINTAINER Teaclave Contributors <[email protected]> +LABEL org.opencontainers.image.description "Github CI Runner" ENV DEBIAN_FRONTEND=noninteractive # Install dependencies for building OP-TEE @@ -76,4 +77,5 @@ RUN apt-get update && \ libvdeplug-dev \ libsdl2-dev \ pip \ - ca-certificates + ca-certificates \ + libgnutls28-dev --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
