2019-10-05 20:25:07 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
2020-12-13 21:32:44 +00:00
|
|
|
env:
|
|
|
|
CTEST_OUTPUT_ON_FAILURE: 1
|
|
|
|
|
2019-10-05 20:25:07 +00:00
|
|
|
jobs:
|
2020-12-05 20:57:47 +00:00
|
|
|
emscripten:
|
|
|
|
name: Emscripten
|
|
|
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
container:
|
|
|
|
# If you change this version, change the number in the cache step too.
|
|
|
|
image: emscripten/emsdk:2.0.10
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: /emsdk/upstream/emscripten/cache
|
|
|
|
key: 2.0.10-${{ runner.os }}
|
|
|
|
|
|
|
|
- name: Build (host tools)
|
|
|
|
run: |
|
|
|
|
mkdir build-host
|
|
|
|
cd build-host
|
|
|
|
|
|
|
|
echo "::group::CMake"
|
|
|
|
cmake .. -DOPTION_TOOLS_ONLY=ON
|
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Build"
|
|
|
|
echo "Running on $(nproc) cores"
|
2021-02-21 15:26:23 +00:00
|
|
|
cmake --build . -j $(nproc) --target tools
|
2020-12-05 20:57:47 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
- name: Install GCC problem matcher
|
|
|
|
uses: ammaraskar/gcc-problem-matcher@master
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
echo "::group::CMake"
|
|
|
|
emcmake cmake .. -DHOST_BINARY_DIR=../build-host
|
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Build"
|
|
|
|
echo "Running on $(nproc) cores"
|
2021-02-21 15:26:23 +00:00
|
|
|
cmake --build . -j $(nproc)
|
2020-12-05 20:57:47 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
2019-10-05 20:25:07 +00:00
|
|
|
linux:
|
|
|
|
name: Linux
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
2021-02-19 18:34:40 +00:00
|
|
|
- compiler: clang
|
|
|
|
cxxcompiler: clang++
|
|
|
|
libsdl: libsdl2-dev
|
|
|
|
- compiler: gcc
|
|
|
|
cxxcompiler: g++
|
|
|
|
libsdl: libsdl2-dev
|
|
|
|
- compiler: gcc
|
|
|
|
cxxcompiler: g++
|
|
|
|
libsdl: libsdl1.2-dev
|
2021-03-03 17:26:09 +00:00
|
|
|
- compiler: gcc
|
|
|
|
cxxcompiler: g++
|
|
|
|
extra-cmake-parameters: -DOPTION_DEDICATED=ON
|
2020-12-13 21:32:44 +00:00
|
|
|
|
|
|
|
runs-on: ubuntu-20.04
|
2019-10-05 20:25:07 +00:00
|
|
|
env:
|
|
|
|
CC: ${{ matrix.compiler }}
|
|
|
|
CXX: ${{ matrix.cxxcompiler }}
|
|
|
|
|
|
|
|
steps:
|
2020-12-13 21:32:44 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2019-10-05 20:25:07 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::group::Update apt"
|
2020-10-10 12:39:37 +00:00
|
|
|
sudo apt-get update
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Install dependencies"
|
2019-10-05 20:25:07 +00:00
|
|
|
sudo apt-get install -y --no-install-recommends \
|
2021-02-19 10:05:00 +00:00
|
|
|
liballegro4-dev \
|
2019-10-05 20:25:07 +00:00
|
|
|
libfontconfig-dev \
|
|
|
|
libicu-dev \
|
|
|
|
liblzma-dev \
|
|
|
|
liblzo2-dev \
|
2021-02-19 18:34:40 +00:00
|
|
|
${{ matrix.libsdl }} \
|
2019-10-05 20:25:07 +00:00
|
|
|
zlib1g-dev \
|
|
|
|
# EOF
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
env:
|
|
|
|
DEBIAN_FRONTEND: noninteractive
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
- name: Get OpenGFX
|
|
|
|
run: |
|
|
|
|
mkdir -p ~/.local/share/openttd/baseset
|
|
|
|
cd ~/.local/share/openttd/baseset
|
2020-12-13 21:32:44 +00:00
|
|
|
|
|
|
|
echo "::group::Download OpenGFX"
|
2019-10-05 20:25:07 +00:00
|
|
|
curl -L https://cdn.openttd.org/opengfx-releases/0.6.0/opengfx-0.6.0-all.zip -o opengfx-all.zip
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Unpack OpenGFX"
|
2019-10-05 20:25:07 +00:00
|
|
|
unzip opengfx-all.zip
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
2019-10-05 20:25:07 +00:00
|
|
|
rm -f opengfx-all.zip
|
|
|
|
|
2020-12-13 21:32:44 +00:00
|
|
|
- name: Install GCC problem matcher
|
|
|
|
uses: ammaraskar/gcc-problem-matcher@master
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
- name: Build
|
2020-12-13 21:32:44 +00:00
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
echo "::group::CMake"
|
2021-03-03 17:26:09 +00:00
|
|
|
cmake .. ${{ matrix.extra-cmake-parameters }}
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Build"
|
|
|
|
echo "Running on $(nproc) cores"
|
2021-02-21 15:26:23 +00:00
|
|
|
cmake --build . -j $(nproc)
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
- name: Test
|
2020-12-13 21:32:44 +00:00
|
|
|
run: |
|
|
|
|
cd build
|
2021-05-01 14:18:41 +00:00
|
|
|
ctest -j $(nproc) --timeout 120
|
2019-10-05 20:25:07 +00:00
|
|
|
|
2020-12-13 21:32:44 +00:00
|
|
|
macos:
|
|
|
|
name: Mac OS
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-12-13 21:32:44 +00:00
|
|
|
include:
|
|
|
|
- arch: x64
|
|
|
|
full_arch: x86_64
|
|
|
|
|
|
|
|
runs-on: macos-latest
|
|
|
|
env:
|
|
|
|
MACOSX_DEPLOYMENT_TARGET: 10.9
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-02-21 00:03:39 +00:00
|
|
|
- name: Prepare cache key
|
|
|
|
id: key
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=image::$ImageOS-$ImageVersion"
|
|
|
|
|
|
|
|
- name: Enable vcpkg cache
|
|
|
|
uses: actions/cache@v2
|
2019-10-05 20:25:07 +00:00
|
|
|
with:
|
2021-02-21 00:03:39 +00:00
|
|
|
path: /usr/local/share/vcpkg/installed
|
2021-03-01 18:35:39 +00:00
|
|
|
key: ${{ steps.key.outputs.image }}-vcpkg-${{ matrix.arch }}-0 # Increase the number whenever dependencies are modified
|
|
|
|
restore-keys: |
|
|
|
|
${{ steps.key.outputs.image }}-vcpkg-${{ matrix.arch }}
|
2021-02-21 00:03:39 +00:00
|
|
|
|
|
|
|
- name: Prepare vcpkg
|
|
|
|
run: |
|
|
|
|
vcpkg install --triplet=${{ matrix.arch }}-osx \
|
|
|
|
liblzma \
|
|
|
|
libpng \
|
|
|
|
lzo \
|
|
|
|
zlib \
|
|
|
|
# EOF
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
- name: Install OpenGFX
|
|
|
|
run: |
|
2020-12-13 21:32:44 +00:00
|
|
|
mkdir -p ~/Documents/OpenTTD/baseset
|
|
|
|
cd ~/Documents//OpenTTD/baseset
|
|
|
|
|
|
|
|
echo "::group::Download OpenGFX"
|
2019-10-05 20:25:07 +00:00
|
|
|
curl -L https://cdn.openttd.org/opengfx-releases/0.6.0/opengfx-0.6.0-all.zip -o opengfx-all.zip
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Unpack OpenGFX"
|
2019-10-05 20:25:07 +00:00
|
|
|
unzip opengfx-all.zip
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
2019-10-05 20:25:07 +00:00
|
|
|
rm -f opengfx-all.zip
|
2020-12-13 21:32:44 +00:00
|
|
|
|
|
|
|
- name: Install GCC problem matcher
|
|
|
|
uses: ammaraskar/gcc-problem-matcher@master
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
echo "::group::CMake"
|
|
|
|
cmake ${GITHUB_WORKSPACE} \
|
|
|
|
-DCMAKE_OSX_ARCHITECTURES=${{ matrix.full_arch }} \
|
|
|
|
-DVCPKG_TARGET_TRIPLET=${{ matrix.arch }}-osx \
|
|
|
|
-DCMAKE_TOOLCHAIN_FILE=/usr/local/share/vcpkg/scripts/buildsystems/vcpkg.cmake \
|
|
|
|
# EOF
|
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Build"
|
|
|
|
echo "Running on $(sysctl -n hw.logicalcpu) cores"
|
2021-02-21 15:26:23 +00:00
|
|
|
cmake --build . -j $(sysctl -n hw.logicalcpu)
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: |
|
2020-12-13 21:32:44 +00:00
|
|
|
cd build
|
2021-05-01 14:18:41 +00:00
|
|
|
ctest -j $(sysctl -n hw.logicalcpu) --timeout 120
|
2019-10-05 20:25:07 +00:00
|
|
|
|
2020-12-13 21:32:44 +00:00
|
|
|
windows:
|
|
|
|
name: Windows
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
2020-12-13 21:32:44 +00:00
|
|
|
matrix:
|
2021-01-25 18:28:23 +00:00
|
|
|
os: [windows-latest, windows-2016]
|
|
|
|
arch: [x86, x64]
|
2020-12-13 21:32:44 +00:00
|
|
|
|
2021-01-25 18:28:23 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-02-21 00:03:39 +00:00
|
|
|
- name: Prepare cache key
|
|
|
|
id: key
|
2021-01-08 14:20:27 +00:00
|
|
|
shell: powershell
|
|
|
|
run: |
|
2021-02-21 00:03:39 +00:00
|
|
|
# Work around caching failure with GNU tar
|
|
|
|
New-Item -Type Junction -Path vcpkg -Target c:\vcpkg
|
2021-01-08 14:20:27 +00:00
|
|
|
|
2021-02-21 00:03:39 +00:00
|
|
|
Write-Output "::set-output name=image::$env:ImageOS-$env:ImageVersion"
|
|
|
|
|
|
|
|
- name: Enable vcpkg cache
|
|
|
|
uses: actions/cache@v2
|
2020-12-13 21:32:44 +00:00
|
|
|
with:
|
2021-02-21 00:03:39 +00:00
|
|
|
path: vcpkg/installed
|
2021-03-01 18:35:39 +00:00
|
|
|
key: ${{ steps.key.outputs.image }}-vcpkg-${{ matrix.arch }}-0 # Increase the number whenever dependencies are modified
|
|
|
|
restore-keys: |
|
|
|
|
${{ steps.key.outputs.image }}-vcpkg-${{ matrix.arch }}
|
2021-02-21 00:03:39 +00:00
|
|
|
|
|
|
|
- name: Prepare vcpkg
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
vcpkg install --triplet=${{ matrix.arch }}-windows-static \
|
|
|
|
liblzma \
|
|
|
|
libpng \
|
|
|
|
lzo \
|
|
|
|
zlib \
|
|
|
|
# EOF
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
- name: Install OpenGFX
|
2020-12-13 21:32:44 +00:00
|
|
|
shell: bash
|
2019-10-05 20:25:07 +00:00
|
|
|
run: |
|
2020-12-13 21:32:44 +00:00
|
|
|
mkdir -p "C:/Users/Public/Documents/OpenTTD/baseset"
|
|
|
|
cd "C:/Users/Public/Documents/OpenTTD/baseset"
|
|
|
|
|
|
|
|
echo "::group::Download OpenGFX"
|
2019-10-05 20:25:07 +00:00
|
|
|
curl -L https://cdn.openttd.org/opengfx-releases/0.6.0/opengfx-0.6.0-all.zip -o opengfx-all.zip
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Unpack OpenGFX"
|
2019-10-05 20:25:07 +00:00
|
|
|
unzip opengfx-all.zip
|
2020-12-13 21:32:44 +00:00
|
|
|
echo "::endgroup::"
|
|
|
|
|
2019-10-05 20:25:07 +00:00
|
|
|
rm -f opengfx-all.zip
|
|
|
|
|
2020-12-13 21:32:44 +00:00
|
|
|
- name: Install MSVC problem matcher
|
|
|
|
uses: ammaraskar/msvc-problem-matcher@master
|
2019-10-05 20:25:07 +00:00
|
|
|
|
2021-02-20 21:40:20 +00:00
|
|
|
- name: Configure developer command prompt for ${{ matrix.arch }}
|
|
|
|
uses: ilammy/msvc-dev-cmd@v1
|
2020-12-13 21:32:44 +00:00
|
|
|
with:
|
2021-02-20 21:40:20 +00:00
|
|
|
arch: ${{ matrix.arch }}
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
echo "::group::CMake"
|
|
|
|
cmake .. \
|
|
|
|
-GNinja \
|
|
|
|
-DVCPKG_TARGET_TRIPLET=${{ matrix.arch }}-windows-static \
|
|
|
|
-DCMAKE_TOOLCHAIN_FILE="c:\vcpkg\scripts\buildsystems\vcpkg.cmake" \
|
|
|
|
# EOF
|
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
echo "::group::Build"
|
|
|
|
cmake --build .
|
|
|
|
echo "::endgroup::"
|
2019-10-05 20:25:07 +00:00
|
|
|
|
|
|
|
- name: Test
|
2020-12-13 21:32:44 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cd ${GITHUB_WORKSPACE}/build
|
2021-05-01 14:18:41 +00:00
|
|
|
ctest --timeout 120
|
2021-05-10 12:48:04 +00:00
|
|
|
|
|
|
|
check_annotations:
|
|
|
|
name: Check Annotations
|
|
|
|
needs:
|
|
|
|
- emscripten
|
|
|
|
- linux
|
|
|
|
- macos
|
|
|
|
- windows
|
|
|
|
|
|
|
|
if: always() && github.event_name == 'pull_request'
|
|
|
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Get check suite ID
|
|
|
|
id: check_suite_id
|
|
|
|
uses: octokit/request-action@v2.x
|
|
|
|
with:
|
|
|
|
route: GET /repos/{repository}/actions/runs/{run_id}
|
|
|
|
repository: ${{ github.repository }}
|
|
|
|
run_id: ${{ github.run_id }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Get check runs
|
|
|
|
id: check_runs
|
|
|
|
uses: octokit/request-action@v2.x
|
|
|
|
with:
|
|
|
|
route: GET /repos/{repository}/check-suites/{check_suite_id}/check-runs
|
|
|
|
repository: ${{ github.repository }}
|
|
|
|
check_suite_id: ${{ fromJson(steps.check_suite_id.outputs.data).check_suite_id }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Check annotations
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo '[
|
|
|
|
${{ toJson(fromJson(steps.check_runs.outputs.data).check_runs.*.output.title) }}, ${{ toJson(fromJson(steps.check_runs.outputs.data).check_runs.*.output.summary) }}
|
|
|
|
]' | jq '.[0] as $t | .[1] as $s | reduce range(.[0] | length) as $i ([]; . + [if $t[$i] then $t[$i] + ": " + $s[$i] else empty end]) | .[]'
|
|
|
|
|
|
|
|
exit $(echo '${{ toJson(fromJson(steps.check_runs.outputs.data).check_runs.*.output.annotations_count) }}' | jq 'add')
|