You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rtpengine/.github/actions/debpkg-bullseye/entrypoint.sh

17 lines
433 B

#!/bin/bash
set -eu -o pipefail
echo "*** Starting execution of '$0' ***"
echo "** Installing build dependencies **"
apt-get -y build-dep -Ppkg.ngcp-rtpengine.nobcg729 .
echo "** Building Debian package **"
dpkg-buildpackage -Ppkg.ngcp-rtpengine.nobcg729
# We're inside /github/workspace/
echo "** Copying Debian package files to workspace **"
cp ../*.deb ../*.buildinfo ../workspace/
echo "*** Finished execution of '$0' ***"