mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
27 lines
615 B
YAML
27 lines
615 B
YAML
dependencies:
|
|
pre:
|
|
- |
|
|
sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots
|
|
sudo apt-get update
|
|
sudo apt-get build-dep teeworlds
|
|
sudo apt-get install libsdl2-dev cmake
|
|
|
|
if [ ! -x ~/bam/bam ]; then
|
|
git clone https://github.com/matricks/bam ~/bam/
|
|
cd ~/bam; ./make_unix.sh
|
|
fi
|
|
|
|
cache_directories:
|
|
- "~/bam/"
|
|
|
|
## Customize test commands
|
|
test:
|
|
override:
|
|
- |
|
|
../bam/bam release
|
|
|
|
mkdir build
|
|
cd build
|
|
env CFLAGS="-Wdeclaration-after-statement -Werror" CXXFLAGS="-Werror" cmake ..
|
|
make everything
|