2020-12-16 18:51:26 +00:00
|
|
|
name: Continuous integration
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-02-10 00:21:04 +00:00
|
|
|
build:
|
|
|
|
name: ${{ matrix.name }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- name: 🐧 Linux (GCC)
|
|
|
|
os: ubuntu-18.04
|
|
|
|
platform: linux
|
|
|
|
artifact-name: godot-cpp-linux-glibc2.27-x86_64-release
|
2022-05-29 08:51:33 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.linux.release.x86_64.a
|
2022-02-10 00:21:04 +00:00
|
|
|
|
2022-03-20 16:19:27 +00:00
|
|
|
- name: 🐧 Linux (GCC, Double Precision)
|
|
|
|
os: ubuntu-18.04
|
|
|
|
platform: linux
|
|
|
|
artifact-name: godot-cpp-linux-glibc2.27-x86_64-double-release
|
2022-05-29 08:51:33 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.linux.release.x86_64.a
|
2022-03-20 16:19:27 +00:00
|
|
|
flags: float=64
|
|
|
|
|
2022-02-10 00:21:04 +00:00
|
|
|
- name: 🏁 Windows (x86_64, MSVC)
|
|
|
|
os: windows-2019
|
|
|
|
platform: windows
|
|
|
|
artifact-name: godot-cpp-windows-msvc2019-x86_64-release
|
2022-05-29 08:51:33 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.windows.release.x86_64.lib
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- name: 🏁 Windows (x86_64, MinGW)
|
|
|
|
os: windows-2019
|
|
|
|
platform: windows
|
|
|
|
artifact-name: godot-cpp-linux-mingw-x86_64-release
|
2022-05-29 08:51:33 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.windows.release.x86_64.a
|
2022-02-10 00:21:04 +00:00
|
|
|
flags: use_mingw=yes
|
|
|
|
|
|
|
|
- name: 🍎 macOS (universal)
|
|
|
|
os: macos-11
|
|
|
|
platform: osx
|
|
|
|
artifact-name: godot-cpp-macos-universal-release
|
|
|
|
artifact-path: bin/libgodot-cpp.osx.release.universal.a
|
2022-05-29 08:51:33 +00:00
|
|
|
flags: arch=universal
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- name: 🤖 Android (arm64)
|
|
|
|
os: ubuntu-18.04
|
|
|
|
platform: android
|
|
|
|
artifact-name: godot-cpp-android-arm64-release
|
2022-05-29 08:51:33 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.android.release.arm64.a
|
|
|
|
flags: arch=arm64
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- name: 🍏 iOS (arm64)
|
|
|
|
os: macos-11
|
|
|
|
platform: ios
|
|
|
|
artifact-name: godot-cpp-ios-arm64-release
|
|
|
|
artifact-path: bin/libgodot-cpp.ios.release.arm64.a
|
2022-05-29 08:51:33 +00:00
|
|
|
flags: arch=arm64
|
2022-02-10 00:21:04 +00:00
|
|
|
|
2020-12-16 18:51:26 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-01 19:09:09 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-12-16 18:51:26 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Set up Python (for SCons)
|
2022-02-28 19:07:08 +00:00
|
|
|
uses: actions/setup-python@v3
|
2020-12-16 18:51:26 +00:00
|
|
|
with:
|
2021-09-26 10:15:19 +00:00
|
|
|
python-version: '3.x'
|
2020-12-16 18:51:26 +00:00
|
|
|
|
2022-02-10 00:21:04 +00:00
|
|
|
- name: Linux dependencies
|
|
|
|
if: ${{ matrix.platform == 'linux' }}
|
2020-12-16 18:51:26 +00:00
|
|
|
run: |
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -qqq build-essential pkg-config
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- name: Install scons
|
|
|
|
run: |
|
2020-12-16 18:51:26 +00:00
|
|
|
python -m pip install scons
|
|
|
|
|
2022-03-09 12:07:46 +00:00
|
|
|
- name: Setup MinGW for Windows/MinGW build
|
|
|
|
if: ${{ matrix.platform == 'windows' && matrix.flags == 'use_mingw=yes' }}
|
|
|
|
uses: egor-tensin/setup-mingw@v2
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- name: Build godot-cpp (debug)
|
|
|
|
run: |
|
|
|
|
scons platform=${{ matrix.platform }} target=debug generate_bindings=yes ${{ matrix.flags }} -j2
|
|
|
|
|
|
|
|
- name: Build test without rebuilding godot-cpp (debug)
|
2020-12-16 18:51:26 +00:00
|
|
|
run: |
|
2022-02-10 00:21:04 +00:00
|
|
|
cd test
|
|
|
|
scons platform=${{ matrix.platform }} target=debug ${{ matrix.flags }} build_library=no -j2
|
2020-12-16 18:51:26 +00:00
|
|
|
|
2022-02-10 00:21:04 +00:00
|
|
|
- name: Build test and godot-cpp (release)
|
2021-11-12 10:03:29 +00:00
|
|
|
run: |
|
|
|
|
cd test
|
2022-02-10 00:21:04 +00:00
|
|
|
scons platform=${{ matrix.platform }} target=release ${{ matrix.flags }} -j2
|
2021-11-12 10:03:29 +00:00
|
|
|
|
2020-12-16 18:51:26 +00:00
|
|
|
- name: Upload artifact
|
2022-04-08 19:14:25 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-12-16 18:51:26 +00:00
|
|
|
with:
|
2022-02-10 00:21:04 +00:00
|
|
|
name: ${{ matrix.artifact-name }}
|
|
|
|
path: ${{ matrix.artifact-path }}
|
2020-12-16 18:51:26 +00:00
|
|
|
if-no-files-found: error
|
|
|
|
|
2021-12-24 00:29:21 +00:00
|
|
|
linux-cmake:
|
|
|
|
name: Build (Linux, GCC, CMake)
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-01 19:09:09 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-12-24 00:29:21 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -qqq build-essential pkg-config cmake
|
|
|
|
|
|
|
|
- name: Build godot-cpp
|
|
|
|
run: |
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release .
|
|
|
|
make -j $(nproc)
|
|
|
|
|
|
|
|
- name: Build test GDNative library
|
|
|
|
run: |
|
2022-01-23 18:54:51 +00:00
|
|
|
cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." .
|
2021-12-24 00:29:21 +00:00
|
|
|
make -j $(nproc)
|
|
|
|
|
|
|
|
linux-cmake-ninja:
|
|
|
|
name: Build (Linux, GCC, CMake Ninja)
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-01 19:09:09 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-12-24 00:29:21 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -qqq build-essential pkg-config cmake ninja-build
|
|
|
|
|
|
|
|
- name: Build godot-cpp
|
|
|
|
run: |
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -GNinja .
|
|
|
|
cmake --build . -j $(nproc)
|
|
|
|
|
|
|
|
- name: Build test GDNative library
|
|
|
|
run: |
|
2022-01-23 18:54:51 +00:00
|
|
|
cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -GNinja .
|
2021-12-24 00:29:21 +00:00
|
|
|
cmake --build . -j $(nproc)
|
|
|
|
|
2022-01-23 18:54:51 +00:00
|
|
|
windows-msvc-cmake:
|
|
|
|
name: Build (Windows, MSVC, CMake)
|
|
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-01 19:09:09 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-01-23 18:54:51 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Build godot-cpp
|
|
|
|
run: |
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 16 2019" .
|
|
|
|
cmake --build .
|
|
|
|
|
|
|
|
- name: Build test GDNative library
|
|
|
|
run: |
|
|
|
|
cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -G"Visual Studio 16 2019" .
|
|
|
|
cmake --build .
|
2020-12-16 18:51:26 +00:00
|
|
|
|
2021-02-01 00:15:22 +00:00
|
|
|
static-checks:
|
|
|
|
name: Static Checks (clang-format)
|
2021-02-28 19:52:06 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-01 00:15:22 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-01 19:09:09 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-02-28 19:52:06 +00:00
|
|
|
|
|
|
|
- name: Make apt sources.list use the default Ubuntu repositories
|
|
|
|
run: |
|
|
|
|
sudo rm -f /etc/apt/sources.list.d/*
|
|
|
|
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
|
|
|
|
sudo apt-get update
|
|
|
|
|
2021-02-01 00:15:22 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-02-28 19:52:06 +00:00
|
|
|
sudo apt-get install -qq dos2unix recode clang-format-11
|
|
|
|
sudo update-alternatives --remove-all clang-format
|
|
|
|
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-11 100
|
2022-05-02 19:13:56 +00:00
|
|
|
python -m pip install black==22.3.0
|
2021-02-01 00:15:22 +00:00
|
|
|
|
|
|
|
- name: Style checks via clang-format
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/clang_format.sh
|
2022-05-02 19:13:56 +00:00
|
|
|
|
|
|
|
- name: Python style checks via black (black_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/black_format.sh
|