diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-09-19 15:12:58 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-09-19 19:26:56 -0700 |
commit | d73e0a0fb4028ea967ce24a162328853dd248dac (patch) | |
tree | 9ebe4c77b09d1fe36e2b1eecf81d7123cd70e653 /.github/workflows/scripts | |
parent | 780cb4fce75b0014485e62d628f9b94bcaae4f8f (diff) | |
download | subsurface-d73e0a0fb4028ea967ce24a162328853dd248dac.tar.gz |
build-system/packaging: add bluez dependency for Linux builds
I hope this captures all the variations
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows/scripts')
-rw-r--r-- | .github/workflows/scripts/linux-in-container-build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/scripts/linux-in-container-build.sh b/.github/workflows/scripts/linux-in-container-build.sh index 11897fbd6..2316a0ced 100644 --- a/.github/workflows/scripts/linux-in-container-build.sh +++ b/.github/workflows/scripts/linux-in-container-build.sh @@ -10,6 +10,10 @@ export PATH=$QT_ROOT/bin:$PATH # Make sure correct qmake is found on the $PATH f export CMAKE_PREFIX_PATH=$QT_ROOT/lib/cmake export Grantlee5_ROOT=/__w/subsurface/subsurface/install-root +echo "--------------------------------------------------------------" +echo "install missing packages" +apt install -y libbluetooth-dev + # the container currently has things under / that need to be under /__w/subsurface/subsurface instead cp -a /appdir /__w/subsurface/ cp -a /install-root /__w/subsurface/ |