From 51894ebd4d92b5aee9c4b3250fe62cb311b89a9d Mon Sep 17 00:00:00 2001 From: Victor Fusco <1221933+vfusco@users.noreply.github.com> Date: Tue, 20 Aug 2024 13:47:36 -0300 Subject: [PATCH 1/2] fix: rootfs missing packages --- fs/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/Dockerfile b/fs/Dockerfile index b5e8f5d4..7ce47d49 100644 --- a/fs/Dockerfile +++ b/fs/Dockerfile @@ -35,16 +35,16 @@ ADD ${TOOLS_DEB} /tmp/ RUN apt-get update && \ apt-get install -y --no-install-recommends \ busybox-static=1:1.30.1-7ubuntu3 \ - coreutils=8.32-4.1ubuntu1 \ - bash=5.1-6ubuntu1 \ + coreutils=8.32-4.1ubuntu1.2 \ + bash=5.1-6ubuntu1.1 \ psmisc=23.4-2build3 \ bc=1.07.1-3build1 \ - curl=7.81.0-1ubuntu1.15 \ + curl=7.81.0-1ubuntu1.17 \ device-tree-compiler=1.6.1-1 \ jq=1.6-2.1ubuntu3 \ lua5.4=5.4.4-1 \ lua-socket=3.0~rc1+git+ac3201d-6 \ - xxd=2:8.2.3995-1ubuntu2.15 \ + xxd=2:8.2.3995-1ubuntu2.16 \ file=1:5.41-3ubuntu0.1 \ /tmp/${TOOLS_DEB} \ && \ From 9e07586ac2c3b03564f0d19692fc9d89f6856b4c Mon Sep 17 00:00:00 2001 From: Victor Fusco <1221933+vfusco@users.noreply.github.com> Date: Tue, 20 Aug 2024 14:57:23 -0300 Subject: [PATCH 2/2] ci: fix rust version --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b42d277f..2e9607bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -108,4 +108,5 @@ jobs: - name: Test rollup-http-server and echo-dapp client run: | cd rollup-http/rollup-http-server + echo -e "[toolchain]\nchannel = \"1.77.2\"" > rust-toolchain.toml USE_ROLLUP_BINDINGS_MOCK=1 cargo test -- --show-output --test-threads=1