Fix drone recipe.
continuous-integration/drone/push Build is passing Details

- Add libfmt.
- Install specific boost packages.
This commit is contained in:
tastytea 2021-05-21 03:31:51 +02:00
parent 4e8c6e7489
commit 42d785d4c8
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ steps:
- alias apt-get='rm -f /var/cache/apt/archives/lock && apt-get'
- apt-get update -q
- apt-get install -qq build-essential cmake clang
- apt-get install -qq catch libboost-all-dev gettext libarchive-dev
- apt-get install -qq catch libboost-program-options-dev libboost-locale-dev gettext libarchive-dev libfmt-dev
- rm -rf build && mkdir -p build && cd build
- cmake -G "Unix Makefiles" -DWITH_TESTS=YES ..
- make VERBOSE=1
@ -61,7 +61,7 @@ steps:
- alias apt-get='rm -f /var/cache/apt/archives/lock && apt-get'
- apt-get update -q
- apt-get install -qq build-essential clang
- apt-get install -qq catch libboost-all-dev gettext libarchive-dev
- apt-get install -qq catch libboost-program-options-dev libboost-locale-dev gettext libarchive-dev libfmt-dev
- sh cmake_installer.sh --skip-license --exclude-subdir --prefix=/usr/local
- rm -rf build && mkdir -p build && cd build
- cmake -G "Unix Makefiles" -DWITH_TESTS=YES ..