Skip to content

Commit 6172d7b

Browse files
committed
feat: enable build on ubuntu 20.04
1 parent 3055079 commit 6172d7b

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ on:
77

88
jobs:
99
build-package:
10-
runs-on: ubuntu-22.04
10+
strategy:
11+
matrix:
12+
os:
13+
- ubuntu-20.04
14+
- ubuntu-22.04
15+
runs-on: ${{ matrix.os }}
1116
steps:
1217
- uses: actions/checkout@v3
1318
- name: Update apt-get cache
@@ -35,4 +40,4 @@ jobs:
3540
upload_url: ${{ github.event.release.upload_url }}
3641
asset_content_type: application/vnd.debian.binary-package
3742
asset_path: ${{ steps.build_deb.outputs.asset-path }}
38-
asset_name: valgrind_${{ github.event.release.name }}_amd64.deb
43+
asset_name: valgrind_${{ github.event.release.name }}_${{ matrix.os }}_amd64.deb

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Section: devel
33
Priority: optional
44
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
55
XSBC-Original-Maintainer: Alessandro Ghedini <ghedo@debian.org>
6-
Build-Depends: debhelper-compat (= 13),
6+
Build-Depends: debhelper-compat(= 12),
77
gdb,
88
gcc-multilib [amd64],
99
libc6-dev-i386 [amd64],

0 commit comments

Comments
 (0)