mirror of
https://github.com/minetest/minetest.git
synced 2025-03-06 20:48:40 +01:00
* Move outside of travis to Github actions This will permit to have better integrated CI workflow than the previous travis one.
8 lines
175 B
Bash
Executable file
8 lines
175 B
Bash
Executable file
#! /bin/bash -eu
|
|
|
|
mkdir cmakebuild
|
|
cd cmakebuild
|
|
cmake -DCMAKE_BUILD_TYPE=Debug \
|
|
-DRUN_IN_PLACE=TRUE -DENABLE_GETTEXT=TRUE \
|
|
-DBUILD_SERVER=TRUE ${CMAKE_FLAGS} ..
|
|
make -j2
|