Skip to content

Commit

Permalink
Update (.github/) workflow to build for Debian Bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
aegean-odyssey committed Nov 3, 2022
1 parent 69e73a5 commit e839eae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# start with debian bullseye
FROM debian:bullseye
# start with debian bookworm
FROM debian:bookworm

# install a minimal-ish set of things for debian packaging
RUN apt-get update -q -q && apt-get upgrade --yes
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/buildpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
### six hour time limit. It can be disabled here, if necessary.
#if: false

name: Debian Bullseye (arm64)
name: Debian Bookworm (arm64)
runs-on: ubuntu-18.04
steps:
- uses: actions/[email protected]
Expand All @@ -23,7 +23,9 @@ jobs:
git switch -c master
- name: COMPILE
uses: uraimo/[email protected]
#uses: uraimo/[email protected]
# use a fork of the run-on-arch action that supports bookworm
uses: roscale/run-on-arch-action@debian-bookworm-aarch64
with:
arch: aarch64
distro: bullseye
Expand Down Expand Up @@ -57,7 +59,7 @@ jobs:
amd64_job:
#if: false

name: Debian Bullseye (amd64)
name: Debian Bookworm (amd64)
runs-on: ubuntu-18.04
steps:
- uses: actions/[email protected]
Expand All @@ -67,7 +69,7 @@ jobs:
git switch -c master
- name: COMPILE
uses: ./.github/debian_bullseye/
uses: ./.github/debian_bookworm/
with:
args: >
/bin/sh -c "
Expand Down

0 comments on commit e839eae

Please sign in to comment.