Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modifications for unbound #7038

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .build/software/dietpi-software-build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,36 @@ mkdir -v /output && mv -v /tmp/*.$EXT /output
poweroff
_EOF_

##########################################
# bash-script for building unbound-package
##########################################

UNBOUND_VERSION="1.19.2-1"
DEBIAN_VERSION=$DISTRO
ARCHITECTURE=$ARCH

if [ -z "$DEBIAN_VERSION" ] || [ -z "$ARCHITECTURE" ]; then
echo "Usage: $0 <debian-version> <architecture>"
exit 1
fi

# install dependencies
G_EXEC sudo apt-get update
G_EXEC sudo apt-get install -y debhelper devscripts

# clone Unbound source
G_EXEC git clone --branch debian/$UNBOUND_VERSION --depth=1 https://salsa.debian.org/dns-team/unbound.git
G_EXEC cd unbound

# add new changelog-entry
G_EXEC dch -l "+dietpi" "Neuer DietPi Build für $DEBIAN_VERSION und $ARCHITECTURE."

# build package for specific architecture
G_EXEC dpkg-buildpackage -us -uc -b -a$ARCHITECTURE

# move package
G_EXEC mv ../*.deb ~/dietpi-packages/

##########################################
# Boot container
##########################################
Expand Down
16 changes: 13 additions & 3 deletions .github/workflows/dietpi-software-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,19 @@ jobs:
name: "${{ matrix.name }} - ${{ matrix.arch }} - ${{ matrix.dist }}"
runs-on: ubuntu-22.04
steps:
- name: Build
run: sudo bash -c "G_GITOWNER=$GITHUB_REPOSITORY_OWNER G_GITBRANCH=$GITHUB_REF_NAME; $(curl -sSf "https://raw.githubusercontent.com/$GITHUB_REPOSITORY_OWNER/DietPi/$GITHUB_REF_NAME/.build/software/dietpi-software-build.bash")" -- -n '${{ matrix.name }}' -a '${{ matrix.arch }}' -d '${{ matrix.dist }}'
- name: Upload
- name: Checkout Code
uses: actions/checkout@v2
- name: Cache Dependencies
uses: actions/cache@v2
with:
path: |
~/.cache/debhelper
~/.cache/devscripts
key: ${{ runner.os }}-debhelper-${{ hashFiles('**/control') }}
- name: Build Unbound Package
run: |
bash ./dietpi-software-build-unbound.sh ${{ matrix.dist }} ${{ matrix.arch }}
- name: Upload Package
run: |
# SSH server and client keys
mkdir ~/.ssh
Expand Down
Loading