mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-18 00:47:46 +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
|
- name: print environment
|
||||||
run: env
|
run: env
|
||||||
- name: dependencies
|
- 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
|
- name: cache boost
|
||||||
id: cache-boost
|
id: cache-boost
|
||||||
uses: actions/cache@v4
|
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}}
|
image: ${{matrix.image_prefix}}${{matrix.debian}}
|
||||||
steps:
|
steps:
|
||||||
- name: Get dependencies
|
- 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:
|
env:
|
||||||
DEBIAN_FRONTEND: noninteractive
|
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
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Setup environment
|
- name: Setup environment
|
||||||
|
@ -98,7 +94,7 @@ jobs:
|
||||||
$GITHUB_WORKSPACE/debian/changelog_md2deb.py $GITHUB_WORKSPACE/changelog.md > $GITHUB_WORKSPACE/debian/changelog
|
$GITHUB_WORKSPACE/debian/changelog_md2deb.py $GITHUB_WORKSPACE/changelog.md > $GITHUB_WORKSPACE/debian/changelog
|
||||||
cat $GITHUB_WORKSPACE/debian/changelog
|
cat $GITHUB_WORKSPACE/debian/changelog
|
||||||
- name: Clean up
|
- name: Clean up
|
||||||
run: rm -rf ${{env.PARENT_DIR}}/snap*_*.deb
|
run: rm -rf ${{env.PARENT_DIR}}/snap*_${{ matrix.arch }}.deb
|
||||||
- name: Cache boost
|
- name: Cache boost
|
||||||
id: cache-boost
|
id: cache-boost
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
|
@ -127,18 +123,15 @@ jobs:
|
||||||
# TODO: use environment variable $HOME/.ccache
|
# TODO: use environment variable $HOME/.ccache
|
||||||
CCACHE_DIR: /home/runner/.ccache
|
CCACHE_DIR: /home/runner/.ccache
|
||||||
run: |
|
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
|
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 }}/_${{ matrix.arch }}_${{ matrix.debian }}/g' ../snap*_${{ matrix.arch }}.deb
|
rename 's/_${{ matrix.arch }}/_without-pulse_${{ matrix.arch }}/g' ../snapclient*_${{ matrix.arch }}.deb
|
||||||
fakeroot make -f debian/rules clean
|
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
|
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
|
||||||
rm ../snapserver_*_${{ matrix.arch }}.deb
|
- name: Archive artifacts
|
||||||
rename 's/_${{ matrix.arch }}/_${{ matrix.arch }}_${{ matrix.debian }}_with-pulse/g' ../snap*_${{ matrix.arch }}.deb
|
uses: actions/upload-artifact@v4
|
||||||
- name: Release artifacts
|
with:
|
||||||
env:
|
name: snapcast_${{ matrix.arch }}-debian-${{matrix.debian}}-${{ github.sha }}
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
path: ${{env.PARENT_DIR}}/snap*_${{ matrix.arch }}.deb
|
||||||
run: |
|
|
||||||
git config --global --add safe.directory $GITHUB_WORKSPACE
|
|
||||||
gh release upload ${{needs.release.outputs.tag}} ${{env.PARENT_DIR}}/snap*_*.deb
|
|
||||||
|
|
||||||
|
|
||||||
win:
|
win:
|
||||||
|
|
|
@ -10,7 +10,9 @@ Build-Depends: debhelper (>= 10~),
|
||||||
libopus-dev,
|
libopus-dev,
|
||||||
libavahi-client-dev,
|
libavahi-client-dev,
|
||||||
libasio-dev,
|
libasio-dev,
|
||||||
libsoxr-dev
|
libsoxr-dev,
|
||||||
|
libssl-dev,
|
||||||
|
libcrypto-dev
|
||||||
Standards-Version: 4.1.4
|
Standards-Version: 4.1.4
|
||||||
Homepage: https://github.com/badaix/snapcast
|
Homepage: https://github.com/badaix/snapcast
|
||||||
Vcs-Git: https://github.com/badaix/snapcast.git
|
Vcs-Git: https://github.com/badaix/snapcast.git
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue