diff --git a/.github/workflows/docker-build-static.yml b/.github/workflows/docker-build-static.yml index 6a0fdd1..63b0a66 100644 --- a/.github/workflows/docker-build-static.yml +++ b/.github/workflows/docker-build-static.yml @@ -64,7 +64,7 @@ jobs: RUSTFLAGS: -Ctarget-feature=-crt-static steps: - name: install runtime - run: apt update && apt install -y gcc-x86-64-linux-gnu g++-x86-64-linux-gnu libc6-dev libssl-dev + run: apt update && apt install -y gcc-x86-64-linux-gnu g++-x86-64-linux-gnu libc6-dev libgnutls28-dev - name: setup node repo LTS run: curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - - name: install nodejs @@ -114,7 +114,7 @@ jobs: - name: add armhf architecture run: dpkg --add-architecture armhf - name: install runtime - run: apt update && apt install -y gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf libc6-armhf-cross libc6-dev-armhf-cross libssl-dev:armhf tar + run: apt update && apt install -y gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf libc6-armhf-cross libc6-dev-armhf-cross libgnutls28-dev:armhf tar - name: smoke test run: rustc --version - name: add armhf target @@ -165,7 +165,7 @@ jobs: - name: add arm64 architecture run: dpkg --add-architecture arm64 - name: install runtime - run: apt update && apt install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libc6-arm64-cross libc6-dev-arm64-cross libssl-dev:arm64 tar + run: apt update && apt install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libc6-arm64-cross libc6-dev-arm64-cross libgnutls28-dev:arm64 tar - name: smoke test run: rustc --version - name: Checkout repository @@ -212,7 +212,7 @@ jobs: CARGO_HOME: ${GITHUB_WORKSPACE}/.cargo steps: - name: install runtime - run: apt update && apt install -y gcc-x86-64-linux-gnu g++-x86-64-linux-gnu libc6-dev libssl-dev tar + run: apt update && apt install -y gcc-x86-64-linux-gnu g++-x86-64-linux-gnu libc6-dev libgnutls28-dev tar - name: smoke test run: rustc --version - name: Checkout repository