From 66d1e4fe0200acdcacb0425eb161d3c4b53eb127 Mon Sep 17 00:00:00 2001 From: Nicholas Lundgaard Date: Thu, 6 Mar 2025 16:32:04 -0600 Subject: [PATCH] 2.7.x: Update build target * Remove ubuntu 20.04 as a CI build target like https://github.com/MacroFab/gerbv/pull/12. See actions/runner-images#11101 for more information. * Add ubuntu 24.04 as a target, in anticipation of us migrating to it soon. --- .github/workflows/build-binary.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-binary.yaml b/.github/workflows/build-binary.yaml index 1a7b44c..54a8270 100644 --- a/.github/workflows/build-binary.yaml +++ b/.github/workflows/build-binary.yaml @@ -11,14 +11,6 @@ on: types: [created] jobs: - build-image-20-04: - name: Build image 20.04 - uses: ./.github/workflows/build-binary-on-ubuntu.yaml - with: - ubuntu_version: 20.04 - filename: gerbv.tar.gz - upload: ${{ github.event_name == 'release' && github.event.action == 'created' }} - build-image-22-04: name: Build image 22.04 uses: ./.github/workflows/build-binary-on-ubuntu.yaml @@ -26,3 +18,11 @@ jobs: ubuntu_version: 22.04 filename: gerbv-22.04.tar.gz upload: ${{ github.event_name == 'release' && github.event.action == 'created' }} + + build-image-24-04: + name: Build image 24.04 + uses: ./.github/workflows/build-binary-on-ubuntu.yaml + with: + ubuntu_version: 24.04 + filename: gerbv-24.04.tar.gz + upload: ${{ github.event_name == 'release' && github.event.action == 'created' }}