Skip to content

Commit

Permalink
Merge pull request #5 from regolith-linux/systemd-package
Browse files Browse the repository at this point in the history
feat: add systemd-dev package to oracular and testing
  • Loading branch information
khos2ow authored Jan 7, 2025
2 parents 3ff0157 + 75a747c commit c5685b3
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:

- name: Generate Packages List
run: |
packages="$(cat common-packages | tr '\n' ' ')"
packages+=" $(cat "${{ matrix.distro }}/${{ matrix.codename }}/additional-packages" | tr '\n' ' ')"
packages="$(cat common-packages | grep -v "#" | tr '\n' ' ')"
packages+=" $(cat "${{ matrix.distro }}/${{ matrix.codename }}/additional-packages" | grep -v "#" | tr '\n' ' ')"
echo "packages=$packages" >> $GITHUB_ENV
- name: Build & Push ci-${{ matrix.distro }}:${{ matrix.codename }}-${{ matrix.arch }} Image
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:

- name: Generate Packages List
run: |
packages="$(cat common-packages | tr '\n' ' ')"
packages+=" $(cat "${{ matrix.distro }}/${{ matrix.codename }}/additional-packages" | tr '\n' ' ')"
packages="$(cat common-packages | grep -v "#" | tr '\n' ' ')"
packages+=" $(cat "${{ matrix.distro }}/${{ matrix.codename }}/additional-packages" | grep -v "#" | tr '\n' ' ')"
echo "packages=$packages" >> $GITHUB_ENV
- name: Build ci-${{ matrix.distro }}:${{ matrix.codename }}-${{ matrix.arch }} Image
Expand Down
11 changes: 10 additions & 1 deletion common-packages
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
# sudo
sudo

# git related packages
git
git-buildpackage
ca-certificates

# useful tools
wget
curl
jq

# gpg packages
gpg
gpg-agent

# packages required for building .deb package
devscripts
dput
diffutils
packaging-dev
git-buildpackage
1 change: 1 addition & 0 deletions debian/testing/additional-packages
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
systemd-dev
1 change: 1 addition & 0 deletions ubuntu/oracular/additional-packages
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
systemd-dev

0 comments on commit c5685b3

Please sign in to comment.