From 91518b64b35832bba2dfde5fd235ef63c8e89841 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Fri, 4 Oct 2024 05:56:04 -0400 Subject: [PATCH] Build on ubuntu-22.04 This matches the version used in the bpf-linker binstall job. Otherwise we fail with: ``` = note: bpf-linker: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by bpf-linker) bpf-linker: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by bpf-linker) bpf-linker: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by bpf-linker) ``` Add a nightly build so we catch these earlier. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c1a3cf..f2385f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,12 +9,15 @@ on: branches: - main + schedule: + - cron: 00 4 * * * + env: CARGO_TERM_COLOR: always jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: