From 28fab99d855b072c2f9eef4bc972a50c14d30c25 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Arcos Date: Mon, 18 Sep 2023 16:33:16 +0200 Subject: [PATCH] Use Ubuntu 20.04 to avoid GLIBC errors on Rpi (#476) * feat: Use Ubuntu 20.04 to avoid GLIBC errors on Rpi * Call `apt-get update` before calling `apt-get install` --------- Co-authored-by: Jesse Braham --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 301be25..77b6395 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,11 +21,11 @@ jobs: - os: "ubuntu-22.04" target: "x86_64-unknown-linux-musl" arch: "x86_64" - - os: "ubuntu-22.04" + - os: "ubuntu-20.04" target: "aarch64-unknown-linux-gnu" arch: "arm64" features: "--features=raspberry" - - os: "ubuntu-22.04" + - os: "ubuntu-20.04" target: "armv7-unknown-linux-gnueabihf" arch: "armhf" features: "--features=raspberry"