From 7a8e3bf16c1a27fba7e8661f4951e16af6917391 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Sat, 6 Feb 2021 12:23:07 +0100 Subject: [PATCH] github: force Ubuntu 20.04 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apparently, ubuntu-latest still points to Ubuntu 18.04, which uses an older and incompatible version of gcc-arm-none-eabi. Signed-off-by: Álvaro Fernández Rojas --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a68e126..a489cef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,8 @@ env: jobs: pico: - name: Raspberry Pi Pico compilation - runs-on: ubuntu-latest + name: RPi Pico compilation + runs-on: ubuntu-20.04 steps: - name: Check out code from GitHub uses: actions/checkout@v2