-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update (.github/) workflow to build for Debian Bookworm
- Loading branch information
1 parent
69e73a5
commit e839eae
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
.github/debian_bullseye/Dockerfile → .github/debian_bookworm/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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 | ||
|
@@ -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] | ||
|
@@ -67,7 +69,7 @@ jobs: | |
git switch -c master | ||
- name: COMPILE | ||
uses: ./.github/debian_bullseye/ | ||
uses: ./.github/debian_bookworm/ | ||
with: | ||
args: > | ||
/bin/sh -c " | ||
|