1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-18 15:07:47 +02:00

chore: Fix CI: don't install bootstrap daemon.

This commit is contained in:
iphydf 2021-12-11 22:53:29 +00:00
parent 8e0e318df1
commit 5230616a9d
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9
2 changed files with 11 additions and 5 deletions

View File

@ -11,6 +11,7 @@ branches:
protection:
required_status_checks:
contexts:
- build
- cirrus-ci
- Codacy Static Code Analysis
- code-review/reviewable

View File

@ -7,7 +7,7 @@ on:
branches: [master]
jobs:
latest:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -15,9 +15,13 @@ jobs:
run:
sudo apt-get update &&
sudo apt-get install -y --no-install-recommends
libalut-dev
libconfig-dev
libcurl4-gnutls-dev
libnotify-dev
libopenal-dev
libopus-dev
libqrencode-dev
libsodium-dev
libvpx-dev
python3-dev
@ -27,9 +31,10 @@ jobs:
run:
git clone --depth=1 https://github.com/TokTok/c-toxcore &&
cd c-toxcore &&
cmake . -B_build &&
make -C _build
sudo make -C _build install
cmake . -B_build -DBOOTSTRAP_DAEMON=OFF &&
cd _build &&
make -j4 &&
sudo make install
- name: Build toxic
run: make
run: make -j4