This commit is contained in:
Sagar Ramsaransing 2020-04-17 19:32:13 +00:00
parent 0759b223cd
commit 95af6e6ae0

View File

@ -7,10 +7,10 @@ steps:
image: archlinux
commands:
- pacman -Sy --noconfirm
- pacman -S cmake make gcc --noconfirm
- pacman -S cmake make ninja clang --noconfirm
- mkdir build
- export CXX=g++
- cd build
- cmake -G "Ninja" -D CMAKE_C_COMPILER=clang -D CMAKE_CXX_COMPILER=clang++ ..
- cmake ..
- make
@ -19,10 +19,10 @@ steps:
image: archlinux
commands:
- pacman -Sy --noconfirm
- pacman -S cmake make gcc --noconfirm
- pacman -S cmake make ninja clang --noconfirm
- mkdir build
- cd build
- export CXX=g++
- cmake -G "Ninja" -D CMAKE_C_COMPILER=clang -D CMAKE_CXX_COMPILER=clang++ ..
- cmake ..
- make
- ./testbin