mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-01 03:07:33 +02:00
Add dependency to OpenSSL
This commit is contained in:
parent
153d004004
commit
eb9fc4ce65
3 changed files with 95 additions and 96 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -23,7 +23,11 @@ jobs:
|
|||
- name: print environment
|
||||
run: env
|
||||
- name: dependencies
|
||||
run: sudo apt-get update && sudo apt-get install -yq libasound2-dev libsoxr-dev libvorbisidec-dev libvorbis-dev libflac-dev libopus-dev alsa-utils libpulse-dev libavahi-client-dev avahi-daemon debhelper ccache expat cppcheck
|
||||
run: |
|
||||
sudo apt-get update && \
|
||||
sudo apt-get install -yq libasound2-dev libsoxr-dev libvorbisidec-dev libvorbis-dev libflac-dev \
|
||||
libopus-dev alsa-utils libpulse-dev libavahi-client-dev libssl-dev libcrypto-dev \
|
||||
avahi-daemon debhelper ccache expat cppcheck
|
||||
- name: cache boost
|
||||
id: cache-boost
|
||||
uses: actions/cache@v4
|
||||
|
|
37
.github/workflows/package.yml
vendored
37
.github/workflows/package.yml
vendored
|
@ -72,18 +72,14 @@ jobs:
|
|||
image: ${{matrix.image_prefix}}${{matrix.debian}}
|
||||
steps:
|
||||
- name: Get dependencies
|
||||
run: apt-get update && apt-get install -yq wget debhelper build-essential cmake git rename libatomic1 libasound2-dev libsoxr-dev libvorbisidec-dev libvorbis-dev libflac-dev libopus-dev alsa-utils libpulse-dev libavahi-client-dev avahi-daemon libexpat1-dev python3 ccache unzip
|
||||
run: |
|
||||
apt-get update && \
|
||||
apt-get install -yq wget debhelper build-essential cmake git rename \
|
||||
libatomic1 libasound2-dev libsoxr-dev libvorbisidec-dev libvorbis-dev libflac-dev \
|
||||
libopus-dev alsa-utils libpulse-dev libavahi-client-dev avahi-daemon libexpat1-dev \
|
||||
libssl-dev libcrypto-dev python3 ccache unzip
|
||||
env:
|
||||
DEBIAN_FRONTEND: noninteractive
|
||||
- name: Get GitHub cli
|
||||
run: |
|
||||
(type -p wget >/dev/null || (apt update && apt-get install wget -y)) \
|
||||
&& mkdir -p -m 755 /etc/apt/keyrings \
|
||||
&& wget -qO- https://cli.github.com/packages/githubcli-archive-keyring.gpg | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
|
||||
&& chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
|
||||
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
|
||||
&& apt update \
|
||||
&& apt install gh -y
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup environment
|
||||
|
@ -98,7 +94,7 @@ jobs:
|
|||
$GITHUB_WORKSPACE/debian/changelog_md2deb.py $GITHUB_WORKSPACE/changelog.md > $GITHUB_WORKSPACE/debian/changelog
|
||||
cat $GITHUB_WORKSPACE/debian/changelog
|
||||
- name: Clean up
|
||||
run: rm -rf ${{env.PARENT_DIR}}/snap*_*.deb
|
||||
run: rm -rf ${{env.PARENT_DIR}}/snap*_${{ matrix.arch }}.deb
|
||||
- name: Cache boost
|
||||
id: cache-boost
|
||||
uses: actions/cache@v4
|
||||
|
@ -127,18 +123,15 @@ jobs:
|
|||
# TODO: use environment variable $HOME/.ccache
|
||||
CCACHE_DIR: /home/runner/.ccache
|
||||
run: |
|
||||
fakeroot make -f debian/rules CMAKEFLAGS="-DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DBOOST_ROOT=$GITHUB_WORKSPACE/${{env.BOOST}} -DCMAKE_BUILD_TYPE:STRING=Release -DREVISION=${{ github.sha }} -DBUILD_WITH_JACK=OFF -DBUILD_WITH_PULSE=OFF -DSNAPWEB_DIR:STRING=$GITHUB_WORKSPACE/snapweb" binary
|
||||
rename 's/_${{ matrix.arch }}/_${{ matrix.arch }}_${{ matrix.debian }}/g' ../snap*_${{ matrix.arch }}.deb
|
||||
fakeroot make -f debian/rules CMAKEFLAGS="-DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DBOOST_ROOT=$GITHUB_WORKSPACE/${{env.BOOST}} -DCMAKE_BUILD_TYPE:STRING=Release -DREVISION=${{ github.sha }} -DBUILD_WITH_PULSE=OFF -DSNAPWEB_DIR:STRING=$GITHUB_WORKSPACE/snapweb" binary
|
||||
rename 's/_${{ matrix.arch }}/_without-pulse_${{ matrix.arch }}/g' ../snapclient*_${{ matrix.arch }}.deb
|
||||
fakeroot make -f debian/rules clean
|
||||
fakeroot make -f debian/rules CMAKEFLAGS="-DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DBOOST_ROOT=$GITHUB_WORKSPACE/${{env.BOOST}} -DCMAKE_BUILD_TYPE:STRING=Release -DREVISION=${{ github.sha }} -DBUILD_WITH_JACK=OFF -DSNAPWEB_DIR:STRING=$GITHUB_WORKSPACE/snapweb" binary
|
||||
rm ../snapserver_*_${{ matrix.arch }}.deb
|
||||
rename 's/_${{ matrix.arch }}/_${{ matrix.arch }}_${{ matrix.debian }}_with-pulse/g' ../snap*_${{ matrix.arch }}.deb
|
||||
- name: Release artifacts
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
git config --global --add safe.directory $GITHUB_WORKSPACE
|
||||
gh release upload ${{needs.release.outputs.tag}} ${{env.PARENT_DIR}}/snap*_*.deb
|
||||
fakeroot make -f debian/rules CMAKEFLAGS="-DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DBOOST_ROOT=$GITHUB_WORKSPACE/${{env.BOOST}} -DCMAKE_BUILD_TYPE:STRING=Release -DREVISION=${{ github.sha }} -DSNAPWEB_DIR:STRING=$GITHUB_WORKSPACE/snapweb" binary
|
||||
- name: Archive artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: snapcast_${{ matrix.arch }}-debian-${{matrix.debian}}-${{ github.sha }}
|
||||
path: ${{env.PARENT_DIR}}/snap*_${{ matrix.arch }}.deb
|
||||
|
||||
|
||||
win:
|
||||
|
|
|
@ -10,7 +10,9 @@ Build-Depends: debhelper (>= 10~),
|
|||
libopus-dev,
|
||||
libavahi-client-dev,
|
||||
libasio-dev,
|
||||
libsoxr-dev
|
||||
libsoxr-dev,
|
||||
libssl-dev,
|
||||
libcrypto-dev
|
||||
Standards-Version: 4.1.4
|
||||
Homepage: https://github.com/badaix/snapcast
|
||||
Vcs-Git: https://github.com/badaix/snapcast.git
|
||||
|
|
Loading…
Add table
Reference in a new issue