Skip to content

Commit

Permalink
Add raspbian-bookwork-armhf to workflow builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ejurgensen committed Oct 19, 2023
1 parent 2e957b5 commit a69dcb0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/create_dpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
type: boolean
raspbian-bullseye-armhf:
type: boolean
raspbian-bookworm-armhf:
type: boolean
raspberrypi-bullseye-arm64:
type: boolean
raspberrypi-bookworm-arm64:
Expand All @@ -27,6 +29,7 @@ on:
env:
raspbian-buster-armhf: '{"image":"raspbian-buster-armhf","OS":"raspbian","DIST":"buster","ARCH":"armhf","FLAGS":""}'
raspbian-bullseye-armhf: '{"image":"raspbian-bullseye-armhf","OS":"raspbian","DIST":"bullseye","ARCH":"armhf","FLAGS":"-- --binary-arch"}'
raspbian-bookworm-armhf: '{"image":"raspbian-bookworm-armhf","OS":"raspbian","DIST":"bookworm","ARCH":"armhf","FLAGS":"-- --binary-arch"}'
raspberrypi-bullseye-arm64: '{"image":"raspberrypi-bullseye-arm64","OS":"raspberrypi","DIST":"bullseye","ARCH":"arm64","FLAGS":"-- --binary-arch"}'
raspberrypi-bookworm-arm64: '{"image":"raspberrypi-bookworm-arm64","OS":"raspberrypi","DIST":"bookworm","ARCH":"arm64","FLAGS":"-- --binary-arch"}'
debian-bullseye-amd64: '{"image":"debian-bullseye-amd64","OS":"debian","DIST":"bullseye","ARCH":"amd64","FLAGS":"-- --binary-arch"}'
Expand All @@ -41,6 +44,7 @@ jobs:
PKGCONF: pkgconf
BUILD_raspbian-buster-armhf: ${{ github.event.inputs.raspbian-buster-armhf || 'true' }}
BUILD_raspbian-bullseye-armhf: ${{ github.event.inputs.raspbian-bullseye-armhf || 'true' }}
BUILD_raspbian-bookworm-armhf: ${{ github.event.inputs.raspbian-bookworm-armhf || 'true' }}
BUILD_raspberrypi-bullseye-arm64: ${{ github.event.inputs.raspberrypi-bullseye-arm64 || 'true' }}
BUILD_raspberrypi-bookworm-arm64: ${{ github.event.inputs.raspberrypi-bookworm-arm64 || 'true' }}
BUILD_debian-bullseye-amd64: ${{ github.event.inputs.debian-bullseye-amd64 || 'true' }}
Expand All @@ -55,6 +59,10 @@ jobs:
if: ${{ env.BUILD_raspbian-bullseye-armhf == 'true' }}
run: echo -n '${{ env.raspbian-bullseye-armhf }},' >> $PKGCONF

- name: Add raspbian-bookworm-armhf
if: ${{ env.BUILD_raspbian-bookworm-armhf == 'true' }}
run: echo -n '${{ env.raspbian-bookworm-armhf }},' >> $PKGCONF

- name: Add raspberrypi-bullseye-arm64
if: ${{ env.BUILD_raspberrypi-bullseye-arm64 == 'true' }}
run: echo -n '${{ env.raspberrypi-bullseye-arm64 }},' >> $PKGCONF
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update_repo_rpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
run: |
test ! -d $DPKGDIR/raspbian-buster-armhf || mv $DPKGDIR/raspbian-buster-armhf/* var/incoming/
test ! -d $DPKGDIR/raspbian-bullseye-armhf || mv $DPKGDIR/raspbian-bullseye-armhf/* var/incoming/
test ! -d $DPKGDIR/raspbian-bookworm-armhf || mv $DPKGDIR/raspbian-bookworm-armhf/* var/incoming/
test ! -d $DPKGDIR/raspberrypi-bullseye-arm64 || mv $DPKGDIR/raspberrypi-bullseye-arm64/* var/incoming/
test ! -d $DPKGDIR/raspberrypi-bookworm-arm64 || mv $DPKGDIR/raspberrypi-bookworm-arm64/* var/incoming/
reprepro processincoming default
Expand Down

0 comments on commit a69dcb0

Please sign in to comment.