mirror of
https://github.com/minetest/minetest.git
synced 2024-12-24 23:22:24 +01:00
27a485a472
* Move outside of travis to Github actions This will permit to have better integrated CI workflow than the previous travis one.
9 lines
175 B
Bash
Executable File
9 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
|