From 2efed3eb6900b1fe0cccf6751ffc80ddffa5b1ad Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Fri, 30 Oct 2020 14:14:16 +0100 Subject: [PATCH] CI: try with ubuntu:20.10 --- .github/workflows/CI.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 422951df675c..8f99fad20bac 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,7 +9,7 @@ jobs: check: runs-on: ubuntu-latest container: - image: fedora:latest + image: ubuntu:20.10 strategy: matrix: rust: @@ -18,7 +18,8 @@ jobs: - nightly - "1.40.0" steps: - - run: sudo dnf install -y gcc gtk3-devel graphene-devel glib2-devel git xorg-x11-server-Xvfb + - run: apt-get update -y + - run: apt-get install -y libgtk-3-dev libgraphene-1.0-dev git xvfb curl - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: