1
0
mirror of https://github.com/minetest/minetest.git synced 2025-06-29 06:30:26 +02:00

ci: Update Github Actions workflows (#9774)

This commit is contained in:
sfan5
2020-05-02 12:52:51 +02:00
committed by GitHub
parent e0ea87f1f3
commit 61d93988d8
6 changed files with 38 additions and 39 deletions

View File

@ -1,4 +1,4 @@
#! /bin/bash -eu
#! /bin/bash -e
mkdir cmakebuild
cd cmakebuild

View File

@ -5,8 +5,7 @@ cd cmakebuild
cmake -DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DRUN_IN_PLACE=TRUE \
-DENABLE_GETTEXT=TRUE \
-DENABLE_SOUND=FALSE \
-DENABLE_{GETTEXT,SOUND}=FALSE \
-DBUILD_SERVER=TRUE ..
make GenerateVersion

View File

@ -1,21 +1,5 @@
#!/bin/bash -e
set_linux_compiler_env() {
if [[ "${COMPILER}" == "gcc-6" ]]; then
export CC=gcc-6
export CXX=g++-6
elif [[ "${COMPILER}" == "gcc-8" ]]; then
export CC=gcc-8
export CXX=g++-8
elif [[ "${COMPILER}" == "clang-3.9" ]]; then
export CC=clang-3.9
export CXX=clang++-3.9
elif [[ "${COMPILER}" == "clang-9" ]]; then
export CC=clang-9
export CXX=clang++-9
fi
}
# Linux build only
install_linux_deps() {
local pkgs=(libirrlicht-dev cmake libbz2-dev libpng-dev \