From b861b90c9c066241b0b7b8c57dff967ededd87e1 Mon Sep 17 00:00:00 2001 From: Maksym Kulish Date: Thu, 29 Aug 2024 13:34:53 +0300 Subject: [PATCH] Add release build for linux that uses older glibc --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62e9c0f..8f50c88 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,11 +7,12 @@ on: jobs: build-linux: - runs-on: ubuntu-latest + runs-on: ${{ matrix.target.runner }} strategy: matrix: target: - - { triple: x86_64-unknown-linux-gnu, suffix: linux_amd64, file: eth-staking-smith } + - { triple: x86_64-unknown-linux-gnu, suffix: linux_amd64, file: eth-staking-smith, runner: ubuntu-latest } + - { triple: x86_64-unknown-linux-gnu, suffix: linux_amd64_glibc2.31, file: eth-staking-smith, runner: ubuntu-20.04 } steps: - name: Checkout repository uses: actions/checkout@v4