blob: 350c2422ff67f4ac3b98045e7900e02a6b858882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
cirrus-ci_task:
container:
image: cirrusci/bazel:latest
cpu: 8
memory: 12G
configure_script:
- sudo apt update
- sudo apt install -y
autopoint
libasound2-dev
libcv-dev
libhighgui-dev
libopenal-dev
- echo "build --jobs=50 --curses=no --verbose_failures" | sudo tee /etc/bazel.bazelrc
- echo "build --config=linux" | sudo tee -a /etc/bazel.bazelrc
- echo "build --config=gcc" | sudo tee -a /etc/bazel.bazelrc
- echo "build --config=remote" | sudo tee -a /etc/bazel.bazelrc
- cd .. && mv cirrus-ci-build c-toxcore
- git clone --depth=1 https://github.com/TokTok/toktok-stack cirrus-ci-build
- mv c-toxcore cirrus-ci-build
- cd -
test_all_script:
- bazel test -c opt -k //c-toxcore/...
|