mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
0c759ae6b6
same as in /top5team without name
158 lines
5.5 KiB
YAML
158 lines
5.5 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- staging.tmp
|
|
- trying.tmp
|
|
- staging-squash-merge.tmp
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-cmake:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest, windows-latest, ubuntu-18.04]
|
|
include:
|
|
- os: ubuntu-latest
|
|
cmake-args: -G "Unix Makefiles"
|
|
build-args: --parallel
|
|
package-file: DDNet-*-linux_x86_64.tar.xz
|
|
fancy: true
|
|
env:
|
|
CFLAGS: -Wdeclaration-after-statement -Werror
|
|
CXXFLAGS: -Werror
|
|
- os: ubuntu-18.04
|
|
cmake-path: /usr/bin/
|
|
cmake-args: -G "Unix Makefiles"
|
|
package-file: DDNet-*-linux_x86_64.tar.xz
|
|
fancy: false
|
|
env:
|
|
CFLAGS: -Wdeclaration-after-statement -Werror
|
|
CXXFLAGS: -Werror
|
|
GTEST_FILTER: -*SQLite*
|
|
- os: macOS-latest
|
|
cmake-args: -G "Unix Makefiles"
|
|
build-args: --parallel
|
|
package-file: DDNet-*-macos.dmg
|
|
fancy: false
|
|
env:
|
|
CFLAGS: -Wdeclaration-after-statement -Werror
|
|
CXXFLAGS: -Werror
|
|
- os: windows-latest
|
|
cmake-args: -G "Visual Studio 16 2019" -A x64
|
|
package-file: DDNet-*-win64.zip
|
|
fancy: false
|
|
env:
|
|
CFLAGS: /WX
|
|
CXXFLAGS: /WX
|
|
LDFLAGS: /WX
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Prepare Linux
|
|
if: contains(matrix.os, 'ubuntu')
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install pkg-config cmake libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev -y
|
|
|
|
- name: Prepare Linux (fancy)
|
|
if: contains(matrix.os, 'ubuntu') && matrix.fancy
|
|
run: |
|
|
sudo apt-get install libmariadbclient-dev libwebsockets-dev mariadb-server -y
|
|
sudo rm -rf /var/lib/mysql/
|
|
sudo mysql_install_db --user=mysql --datadir=/var/lib/mysql/
|
|
cd /usr; sudo /usr/bin/mysqld_safe --datadir='/var/lib/mysql/' --no-watch
|
|
sleep 10
|
|
sudo mariadb <<EOF
|
|
CREATE DATABASE ddnet;
|
|
CREATE USER 'ddnet'@'localhost' IDENTIFIED BY 'thebestpassword';
|
|
GRANT ALL PRIVILEGES ON ddnet.* TO 'ddnet'@'localhost';
|
|
FLUSH PRIVILEGES;
|
|
EOF
|
|
|
|
- name: Prepare macOS
|
|
if: contains(matrix.os, 'macOS')
|
|
run: |
|
|
brew update || true
|
|
brew install pkg-config sdl2
|
|
brew upgrade freetype
|
|
sudo rm -rf /Library/Developer/CommandLineTools
|
|
|
|
- name: Build in debug mode
|
|
env: ${{ matrix.env }}
|
|
run: |
|
|
mkdir debug
|
|
cd debug
|
|
${{ matrix.cmake-path }}cmake --version
|
|
${{ matrix.cmake-path }}cmake ${{ matrix.cmake-args }} -DCMAKE_BUILD_TYPE=Debug -Werror=dev -DDOWNLOAD_GTEST=ON -DDEV=ON -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG=. ..
|
|
${{ matrix.cmake-path }}cmake --build . --config Debug --target everything ${{ matrix.build-args }}
|
|
- name: Test debug
|
|
env: ${{ matrix.env }}
|
|
run: |
|
|
cd debug
|
|
${{ matrix.cmake-path }}cmake --build . --config Debug --target run_tests ${{ matrix.build-args }}
|
|
./DDNet-Server shutdown
|
|
|
|
- name: Build in release mode
|
|
env: ${{ matrix.env }}
|
|
run: |
|
|
mkdir release
|
|
cd release
|
|
${{ matrix.cmake-path }}cmake ${{ matrix.cmake-args }} -DCMAKE_BUILD_TYPE=Release -Werror=dev -DDOWNLOAD_GTEST=ON -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE=. ..
|
|
${{ matrix.cmake-path }}cmake --build . --config Release --target everything ${{ matrix.build-args }}
|
|
- name: Test release
|
|
env: ${{ matrix.env }}
|
|
run: |
|
|
cd release
|
|
${{ matrix.cmake-path }}cmake --build . --config Release --target run_tests ${{ matrix.build-args }}
|
|
./DDNet-Server shutdown
|
|
|
|
- name: Build headless client
|
|
env: ${{ matrix.env }}
|
|
run: |
|
|
mkdir headless
|
|
cd headless
|
|
${{ matrix.cmake-path }}cmake --version
|
|
${{ matrix.cmake-path }}cmake ${{ matrix.cmake-args }} -DHEADLESS_CLIENT=ON -DCMAKE_BUILD_TYPE=Debug -Werror=dev -DDOWNLOAD_GTEST=ON -DDEV=ON -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG=. ..
|
|
${{ matrix.cmake-path }}cmake --build . --config Debug ${{ matrix.build-args }}
|
|
- name: Test headless client
|
|
run: |
|
|
cd headless
|
|
./DDNet-Server &
|
|
./DDNet "cl_download_skins 0;connect localhost:8303;quit"
|
|
|
|
- name: Build in release mode with debug info and all features on
|
|
if: matrix.fancy
|
|
env: ${{ matrix.env }}
|
|
run: |
|
|
mkdir fancy
|
|
cd fancy
|
|
${{ matrix.cmake-path }}cmake ${{ matrix.cmake-args }} -DCMAKE_BUILD_TYPE=RelWithDebInfo -DDOWNLOAD_GTEST=ON -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE=. -DANTIBOT=ON -DTEST_MYSQL=ON -DWEBSOCKETS=ON ..
|
|
${{ matrix.cmake-path }}cmake --build . --config RelWithDebInfo --target everything ${{ matrix.build-args }}
|
|
- name: Test fancy
|
|
if: matrix.fancy
|
|
env: ${{ matrix.env }}
|
|
run: |
|
|
cd fancy
|
|
${{ matrix.cmake-path }}cmake --build . --config RelWithDebInfo --target run_tests ${{ matrix.build-args }}
|
|
./DDNet-Server shutdown
|
|
|
|
- name: Package
|
|
run: |
|
|
cd release
|
|
${{ matrix.cmake-path }}cmake --build . --config Release --target package_default ${{ matrix.build-args }}
|
|
mkdir artifacts
|
|
mv ${{ matrix.package-file }} artifacts
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: ddnet-${{ matrix.os }}
|
|
path: release/artifacts
|