[A] Added basic builds to freebsd
This commit is contained in:
parent
a2c245df4f
commit
308ca2a210
17
.cirrus.yml
17
.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
|
||||
- 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 ..
|
Loading…
Reference in New Issue
Block a user