libfort/.cirrus.yml
2019-01-12 15:52:48 +03:00

22 lines
451 B
YAML

freebsd_instance:
image: freebsd-12-0-release-amd64
main_task:
script:
- echo "Hello cirrus"
- ls
- yes | pkg install cmake
- cc --version
- c++ --version
# Basic c build
- cd lib
- cc -Wall -Wextra -Werror --std=gnu89 -DFT_CONGIG_HAVE_WCHAR fort.c -c -o fort.o
- rm fort.o
- cd ..
# Basic c++ build
- cd lib
- c++ -Wall -Wextra -Werror fort.c -c -o fort.o
- rm fort.o
- cd ..