Skip to content

Commit

Permalink
feat: enable build on ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Jun 28, 2023
1 parent 3055079 commit 6172d7b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ on:

jobs:
build-package:
runs-on: ubuntu-22.04
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Update apt-get cache
Expand Down Expand Up @@ -35,4 +40,4 @@ jobs:
upload_url: ${{ github.event.release.upload_url }}
asset_content_type: application/vnd.debian.binary-package
asset_path: ${{ steps.build_deb.outputs.asset-path }}
asset_name: valgrind_${{ github.event.release.name }}_amd64.deb
asset_name: valgrind_${{ github.event.release.name }}_${{ matrix.os }}_amd64.deb
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Section: devel
Priority: optional
Maintainer: Ubuntu Developers <[email protected]>
XSBC-Original-Maintainer: Alessandro Ghedini <[email protected]>
Build-Depends: debhelper-compat (= 13),
Build-Depends: debhelper-compat(= 12),
gdb,
gcc-multilib [amd64],
libc6-dev-i386 [amd64],
Expand Down

0 comments on commit 6172d7b

Please sign in to comment.