From 308ca2a210cb269de6e70bd54f1c91c7fbc0ce55 Mon Sep 17 00:00:00 2001 From: seleznevae Date: Sat, 12 Jan 2019 15:52:48 +0300 Subject: [PATCH] [A] Added basic builds to freebsd --- .cirrus.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 28ae529..bef2acf 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -6,8 +6,17 @@ main_task: - echo "Hello cirrus" - ls - yes | pkg install cmake - - which cmake - - which cc - - which c++ - cc --version - - c++ --version \ No newline at end of file + - 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 .. \ No newline at end of file