From 2739b76f791127debeb214cdcf009e6a1265a55c Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Mon, 2 Oct 2023 23:06:24 -0400 Subject: [PATCH] CI: Build Linux binaries ina Debian 8 Docker container For compatibility with older Linux distros --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9fc3b96a20..94ab825a3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,13 +18,16 @@ env: RUN_LINUX_VT: true RUN_MACOS_VT: true -jobs: build: strategy: matrix: - os: [ ubuntu-20.04, windows-latest, macos-latest ] + os: [ macos-latest, windows-latest ] + include: + - os: ubuntu-latest + image: "debian:8" fail-fast: false runs-on: ${{ matrix.os }} + container: ${{ matrix.image }} steps: - name: Checkout the latest code