From 786860b156e04c1c1b9a488dfc70fe1e27abd0fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 28 May 2024 13:03:10 +0200 Subject: [PATCH] ci: workaround bad mio branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8b5053d77..a88ecef414 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -183,6 +183,10 @@ jobs: if: matrix.arch == 'x86_64' - run: cargo +stable install cargo-careful if: matrix.profile == 'dev' + # FIXME: mio branch `v0.8.x` mio broke from `f5d912e7` to `a8a5c5bb` + # See https://github.com/hermit-os/kernel/actions/runs/9242628556/job/25489845418 + - run: cargo update -p mio --precise f5d912e7 + working-directory: . - run: cargo xtask ci qemu --arch ${{ matrix.arch }} --profile ${{ matrix.profile }} --package hello_world - run: cargo xtask ci qemu --arch ${{ matrix.arch }} --profile ${{ matrix.profile }} --package hello_world --no-default-features --microvm if: matrix.arch == 'x86_64'