mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 21:13:02 +01:00
chore: Fix CI: don't install bootstrap daemon.
This commit is contained in:
parent
8e0e318df1
commit
5230616a9d
1
.github/settings.yml
vendored
1
.github/settings.yml
vendored
@ -11,6 +11,7 @@ branches:
|
|||||||
protection:
|
protection:
|
||||||
required_status_checks:
|
required_status_checks:
|
||||||
contexts:
|
contexts:
|
||||||
|
- build
|
||||||
- cirrus-ci
|
- cirrus-ci
|
||||||
- Codacy Static Code Analysis
|
- Codacy Static Code Analysis
|
||||||
- code-review/reviewable
|
- code-review/reviewable
|
||||||
|
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
@ -7,7 +7,7 @@ on:
|
|||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
latest:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -15,9 +15,13 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
sudo apt-get update &&
|
sudo apt-get update &&
|
||||||
sudo apt-get install -y --no-install-recommends
|
sudo apt-get install -y --no-install-recommends
|
||||||
|
libalut-dev
|
||||||
|
libconfig-dev
|
||||||
|
libcurl4-gnutls-dev
|
||||||
libnotify-dev
|
libnotify-dev
|
||||||
libopenal-dev
|
libopenal-dev
|
||||||
libopus-dev
|
libopus-dev
|
||||||
|
libqrencode-dev
|
||||||
libsodium-dev
|
libsodium-dev
|
||||||
libvpx-dev
|
libvpx-dev
|
||||||
python3-dev
|
python3-dev
|
||||||
@ -27,9 +31,10 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
git clone --depth=1 https://github.com/TokTok/c-toxcore &&
|
git clone --depth=1 https://github.com/TokTok/c-toxcore &&
|
||||||
cd c-toxcore &&
|
cd c-toxcore &&
|
||||||
cmake . -B_build &&
|
cmake . -B_build -DBOOTSTRAP_DAEMON=OFF &&
|
||||||
make -C _build
|
cd _build &&
|
||||||
sudo make -C _build install
|
make -j4 &&
|
||||||
|
sudo make install
|
||||||
|
|
||||||
- name: Build toxic
|
- name: Build toxic
|
||||||
run: make
|
run: make -j4
|
||||||
|
Loading…
Reference in New Issue
Block a user