summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2020-05-02 12:52:51 +0200
committerGitHub <noreply@github.com>2020-05-02 12:52:51 +0200
commit61d93988d8b44a9905451c4c288e02c04d41abb0 (patch)
treef0c20599ddc0e61e94e24521cd17851f9ed5d0d2 /.github
parente0ea87f1f32273dba2eb5421c2a8c890479ba078 (diff)
downloadminetest-61d93988d8b44a9905451c4c288e02c04d41abb0.tar.gz
minetest-61d93988d8b44a9905451c4c288e02c04d41abb0.tar.bz2
minetest-61d93988d8b44a9905451c4c288e02c04d41abb0.zip
ci: Update Github Actions workflows (#9774)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml45
-rw-r--r--.github/workflows/cpp_lint.yml9
-rw-r--r--.github/workflows/lua_lint.yml2
3 files changed, 36 insertions, 20 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2c4d3abd1..91ed8fd43 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- - name: Install compiler
+ - name: Install deps
run: |
sudo apt-get install g++-6 gcc-6 -qyy
source ./util/ci/common.sh
@@ -41,7 +41,8 @@ jobs:
run: |
./util/ci/build.sh
env:
- CMAKE_FLAGS: "-DCMAKE_C_COMPILER=gcc-6 -DCMAKE_CXX_COMPILER=g++-6"
+ CC: gcc-6
+ CXX: g++-6
- name: Test
run: |
@@ -52,7 +53,7 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- - name: Install compiler
+ - name: Install deps
run: |
sudo apt-get install g++-8 gcc-8 -qyy
source ./util/ci/common.sh
@@ -62,7 +63,8 @@ jobs:
run: |
./util/ci/build.sh
env:
- CMAKE_FLAGS: "-DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8"
+ CC: gcc-8
+ CXX: g++-8
- name: Test
run: |
@@ -73,7 +75,7 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- - name: Install compiler
+ - name: Install deps
run: |
sudo apt-get install clang-3.9 -qyy
source ./util/ci/common.sh
@@ -83,7 +85,8 @@ jobs:
run: |
./util/ci/build.sh
env:
- CMAKE_FLAGS: "-DCMAKE_C_COMPILER=clang-3.9 -DCMAKE_CXX_COMPILER=clang++-3.9"
+ CC: clang-3.9
+ CXX: clang++-3.9
- name: Test
run: |
@@ -94,7 +97,7 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- - name: Install compiler
+ - name: Install deps
run: |
sudo apt-get install clang-9 valgrind -qyy
source ./util/ci/common.sh
@@ -106,7 +109,8 @@ jobs:
run: |
./util/ci/build.sh
env:
- CMAKE_FLAGS: "-DCMAKE_C_COMPILER=clang-9 -DCMAKE_CXX_COMPILER=clang++-9"
+ CC: clang-9
+ CXX: clang++-9
- name: Test
run: |
@@ -116,12 +120,13 @@ jobs:
run: |
valgrind --leak-check=full --leak-check-heuristics=all --undef-value-errors=no --error-exitcode=9 ./bin/minetest --run-unittests
-
+ # Build with prometheus-cpp (server-only)
clang_9_prometheus:
+ name: "clang_9 (PROMETHEUS=1)"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- - name: Install compiler
+ - name: Install deps
run: |
sudo apt-get install clang-9 -qyy
source ./util/ci/common.sh
@@ -135,18 +140,21 @@ jobs:
run: |
./util/ci/build.sh
env:
- CMAKE_FLAGS: "-DCMAKE_C_COMPILER=clang-9 -DCMAKE_CXX_COMPILER=clang++-9 -DENABLE_PROMETHEUS=1"
+ CC: clang-9
+ CXX: clang++-9
+ CMAKE_FLAGS: "-DENABLE_PROMETHEUS=1 -DBUILD_CLIENT=0"
- name: Test
run: |
- ./bin/minetest --run-unittests
+ ./bin/minetestserver --run-unittests
- # Some builds doesn't require freetype, ensure it compiled properly
+ # Build without freetype (client-only)
clang_9_no_freetype:
+ name: "clang_9 (FREETYPE=0)"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- - name: Install compiler
+ - name: Install deps
run: |
sudo apt-get install clang-9 -qyy
source ./util/ci/common.sh
@@ -156,13 +164,16 @@ jobs:
run: |
./util/ci/build.sh
env:
- CMAKE_FLAGS: "-DCMAKE_C_COMPILER=clang-9 -DCMAKE_CXX_COMPILER=clang++-9 -DENABLE_FREETYPE=0"
+ CC: clang-9
+ CXX: clang++-9
+ CMAKE_FLAGS: "-DENABLE_FREETYPE=0 -DBUILD_SERVER=0"
- name: Test
run: |
./bin/minetest --run-unittests
docker:
+ name: "Docker image"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
@@ -171,11 +182,13 @@ jobs:
docker build .
win32:
+ name: "MinGW cross-compiler (32-bit)"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Install compiler
run: |
+ sudo apt-get install gettext -qyy
wget http://minetest.kitsunemimi.pw/mingw-w64-i686_9.2.0_ubuntu18.04.tar.xz -O mingw.tar.xz
sudo tar -xaf mingw.tar.xz -C /usr
@@ -187,11 +200,13 @@ jobs:
NO_PACKAGE: 1
win64:
+ name: "MinGW cross-compiler (64-bit)"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Install compiler
run: |
+ sudo apt-get install gettext -qyy
wget http://minetest.kitsunemimi.pw/mingw-w64-x86_64_9.2.0_ubuntu18.04.tar.xz -O mingw.tar.xz
sudo tar -xaf mingw.tar.xz -C /usr
diff --git a/.github/workflows/cpp_lint.yml b/.github/workflows/cpp_lint.yml
index 3044d5186..1f97d105a 100644
--- a/.github/workflows/cpp_lint.yml
+++ b/.github/workflows/cpp_lint.yml
@@ -30,19 +30,20 @@ jobs:
- uses: actions/checkout@v2
- name: Install clang-format
run: |
- sudo apt-get install ${CLANG_FORMAT} -qyy
- env:
- CLANG_FORMAT: clang-format-9
+ sudo apt-get install clang-format-9 -qyy
+
- name: Run clang-format
run: |
source ./util/ci/lint.sh
perform_lint
+ env:
+ CLANG_FORMAT: clang-format-9
clang_tidy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- - name: Install clang-tidy
+ - name: Install deps
run: |
sudo apt-get install clang-tidy-9 -qyy
source ./util/ci/common.sh
diff --git a/.github/workflows/lua_lint.yml b/.github/workflows/lua_lint.yml
index 1b2c01192..738e5afff 100644
--- a/.github/workflows/lua_lint.yml
+++ b/.github/workflows/lua_lint.yml
@@ -13,12 +13,12 @@ on:
jobs:
luacheck:
+ name: "Builtin Luacheck and Unit Tests"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Install luarocks
run: |
- sudo apt-get update -qyy
sudo apt-get install luarocks -qyy
- name: Install luarocks tools