2020-12-16 18:51:26 +00:00
|
|
|
name: Continuous integration
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-09-19 13:15:38 +00:00
|
|
|
env:
|
|
|
|
# Only used for the cache key. Increment version to force clean build.
|
|
|
|
GODOT_BASE_BRANCH: master
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-12-16 18:51:26 +00:00
|
|
|
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)
|
2023-02-21 10:47:40 +00:00
|
|
|
os: ubuntu-20.04
|
2022-02-10 00:21:04 +00:00
|
|
|
platform: linux
|
|
|
|
artifact-name: godot-cpp-linux-glibc2.27-x86_64-release
|
2022-09-24 16:44:25 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.linux.template_release.x86_64.a
|
2023-04-29 16:56:33 +00:00
|
|
|
run-tests: true
|
2022-09-19 13:15:38 +00:00
|
|
|
cache-name: linux-x86_64
|
2022-02-10 00:21:04 +00:00
|
|
|
|
2022-03-20 16:19:27 +00:00
|
|
|
- name: 🐧 Linux (GCC, Double Precision)
|
2023-02-21 10:47:40 +00:00
|
|
|
os: ubuntu-20.04
|
2022-03-20 16:19:27 +00:00
|
|
|
platform: linux
|
|
|
|
artifact-name: godot-cpp-linux-glibc2.27-x86_64-double-release
|
2022-09-24 16:44:25 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.linux.template_release.double.x86_64.a
|
2023-01-09 10:03:07 +00:00
|
|
|
flags: precision=double
|
2023-04-29 16:56:33 +00:00
|
|
|
run-tests: false
|
2022-09-19 13:15:38 +00:00
|
|
|
cache-name: linux-x86_64-f64
|
2022-03-20 16:19:27 +00:00
|
|
|
|
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-09-24 16:44:25 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.windows.template_release.x86_64.lib
|
2023-04-29 16:56:33 +00:00
|
|
|
run-tests: false
|
2022-09-19 13:15:38 +00:00
|
|
|
cache-name: windows-x86_64-msvc
|
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-09-24 16:44:25 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.windows.template_release.x86_64.a
|
2022-02-10 00:21:04 +00:00
|
|
|
flags: use_mingw=yes
|
2023-04-29 16:56:33 +00:00
|
|
|
run-tests: false
|
2022-09-19 13:15:38 +00:00
|
|
|
cache-name: windows-x86_64-mingw
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- name: 🍎 macOS (universal)
|
|
|
|
os: macos-11
|
2022-07-20 08:01:47 +00:00
|
|
|
platform: macos
|
2022-02-10 00:21:04 +00:00
|
|
|
artifact-name: godot-cpp-macos-universal-release
|
2022-09-24 16:44:25 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.macos.template_release.universal.a
|
2022-05-29 08:51:33 +00:00
|
|
|
flags: arch=universal
|
2023-04-29 16:56:33 +00:00
|
|
|
run-tests: false
|
2022-09-19 13:15:38 +00:00
|
|
|
cache-name: macos-universal
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- name: 🤖 Android (arm64)
|
2023-02-21 10:47:40 +00:00
|
|
|
os: ubuntu-20.04
|
2022-02-10 00:21:04 +00:00
|
|
|
platform: android
|
|
|
|
artifact-name: godot-cpp-android-arm64-release
|
2022-09-24 16:44:25 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.android.template_release.arm64.a
|
2023-11-20 22:23:17 +00:00
|
|
|
flags: arch=arm64
|
2023-04-29 16:56:33 +00:00
|
|
|
run-tests: false
|
2022-09-19 13:15:38 +00:00
|
|
|
cache-name: android-arm64
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- name: 🍏 iOS (arm64)
|
|
|
|
os: macos-11
|
|
|
|
platform: ios
|
|
|
|
artifact-name: godot-cpp-ios-arm64-release
|
2022-09-24 16:44:25 +00:00
|
|
|
artifact-path: bin/libgodot-cpp.ios.template_release.arm64.a
|
2022-05-29 08:51:33 +00:00
|
|
|
flags: arch=arm64
|
2023-04-29 16:56:33 +00:00
|
|
|
run-tests: false
|
2022-09-19 13:15:38 +00:00
|
|
|
cache-name: ios-arm64
|
|
|
|
|
2023-09-20 08:08:09 +00:00
|
|
|
- name: 🌐 Web (wasm32)
|
|
|
|
os: ubuntu-20.04
|
2023-10-15 10:01:45 +00:00
|
|
|
platform: web
|
|
|
|
artifact-name: godot-cpp-web-wasm32-release
|
|
|
|
artifact-path: bin/libgodot-cpp.web.template_release.wasm32.a
|
2023-09-20 08:08:09 +00:00
|
|
|
run-tests: false
|
2023-10-15 10:01:45 +00:00
|
|
|
cache-name: web-wasm32
|
2023-09-20 08:08:09 +00:00
|
|
|
|
2022-09-19 13:15:38 +00:00
|
|
|
env:
|
|
|
|
SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
|
2023-11-20 22:23:17 +00:00
|
|
|
EM_VERSION: 3.1.39
|
2023-09-20 08:08:09 +00:00
|
|
|
EM_CACHE_FOLDER: "emsdk-cache"
|
2022-02-10 00:21:04 +00:00
|
|
|
|
2020-12-16 18:51:26 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 19:13:12 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-12-16 18:51:26 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
2022-09-19 13:15:38 +00:00
|
|
|
- name: Setup Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache
|
|
|
|
with:
|
|
|
|
cache-name: ${{ matrix.cache-name }}
|
|
|
|
continue-on-error: true
|
|
|
|
|
2020-12-16 18:51:26 +00:00
|
|
|
- name: Set up Python (for SCons)
|
2023-12-06 19:33:16 +00:00
|
|
|
uses: actions/setup-python@v5
|
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
|
|
|
|
2023-11-20 22:23:17 +00:00
|
|
|
- name: Android dependencies
|
|
|
|
if: ${{ matrix.platform == 'android' }}
|
|
|
|
uses: nttld/setup-ndk@v1
|
|
|
|
with:
|
|
|
|
ndk-version: r23c
|
|
|
|
link-to-sdk: true
|
2022-02-10 00:21:04 +00:00
|
|
|
|
2023-09-20 08:08:09 +00:00
|
|
|
- name: Web dependencies
|
2023-10-15 10:01:45 +00:00
|
|
|
if: ${{ matrix.platform == 'web' }}
|
2024-01-22 19:23:26 +00:00
|
|
|
uses: mymindstorm/setup-emsdk@v14
|
2023-09-20 08:08:09 +00:00
|
|
|
with:
|
|
|
|
version: ${{env.EM_VERSION}}
|
|
|
|
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
|
|
|
|
|
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
|
2023-10-04 11:42:43 +00:00
|
|
|
with:
|
|
|
|
version: 12.2.0
|
2022-02-10 00:21:04 +00:00
|
|
|
|
2023-11-20 22:23:17 +00:00
|
|
|
- name: Install scons
|
|
|
|
run: |
|
|
|
|
python -m pip install scons==4.0.0
|
|
|
|
|
2022-10-31 09:24:24 +00:00
|
|
|
- name: Generate godot-cpp sources only
|
|
|
|
run: |
|
2024-01-18 20:22:16 +00:00
|
|
|
scons platform=${{ matrix.platform }} verbose=yes build_library=no ${{ matrix.flags }}
|
2022-10-31 09:24:24 +00:00
|
|
|
scons -c
|
|
|
|
|
2022-02-10 00:21:04 +00:00
|
|
|
- name: Build godot-cpp (debug)
|
|
|
|
run: |
|
2024-01-18 20:22:16 +00:00
|
|
|
scons platform=${{ matrix.platform }} verbose=yes target=template_debug ${{ matrix.flags }}
|
2022-02-10 00:21:04 +00:00
|
|
|
|
|
|
|
- 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
|
2024-01-18 20:22:16 +00:00
|
|
|
scons platform=${{ matrix.platform }} verbose=yes target=template_debug ${{ matrix.flags }} build_library=no
|
2020-12-16 18:51:26 +00:00
|
|
|
|
2022-09-24 16:44:25 +00:00
|
|
|
- name: Build test and godot-cpp (release)
|
2021-11-12 10:03:29 +00:00
|
|
|
run: |
|
|
|
|
cd test
|
2024-01-18 20:22:16 +00:00
|
|
|
scons platform=${{ matrix.platform }} verbose=yes target=template_release ${{ matrix.flags }}
|
2021-11-12 10:03:29 +00:00
|
|
|
|
2023-04-29 16:56:33 +00:00
|
|
|
- name: Download latest Godot artifacts
|
|
|
|
uses: dsnopek/action-download-artifact@1322f74e2dac9feed2ee76a32d9ae1ca3b4cf4e9
|
|
|
|
if: ${{ matrix.run-tests }}
|
|
|
|
with:
|
|
|
|
repo: godotengine/godot
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
workflow: linux_builds.yml
|
|
|
|
workflow_conclusion: success
|
|
|
|
name: linux-editor-mono
|
|
|
|
search_artifacts: true
|
|
|
|
check_artifacts: true
|
|
|
|
ensure_latest: true
|
|
|
|
path: godot-artifacts
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
if: ${{ matrix.run-tests }}
|
|
|
|
run: |
|
|
|
|
chmod +x ./godot-artifacts/godot.linuxbsd.editor.x86_64.mono
|
|
|
|
./godot-artifacts/godot.linuxbsd.editor.x86_64.mono --headless --version
|
|
|
|
cd test
|
2023-11-07 21:48:25 +00:00
|
|
|
# Need to run the editor so .godot is generated... but it crashes! Ignore that :-)
|
2023-11-13 17:51:47 +00:00
|
|
|
(cd project && (timeout 10 ../../godot-artifacts/godot.linuxbsd.editor.x86_64.mono --editor --headless --quit >/dev/null 2>&1 || true))
|
2023-04-29 16:56:33 +00:00
|
|
|
GODOT=../godot-artifacts/godot.linuxbsd.editor.x86_64.mono ./run-tests.sh
|
|
|
|
|
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:
|
2022-09-08 03:52:14 +00:00
|
|
|
name: 🐧 Build (Linux, GCC, CMake)
|
2023-02-21 10:47:40 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-12-24 00:29:21 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 19:13:12 +00:00
|
|
|
uses: actions/checkout@v4
|
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 .
|
2022-09-09 15:02:40 +00:00
|
|
|
make -j $(nproc) VERBOSE=1
|
2021-12-24 00:29:21 +00:00
|
|
|
|
2022-12-07 13:11:44 +00:00
|
|
|
- name: Build test GDExtension library
|
2021-12-24 00:29:21 +00:00
|
|
|
run: |
|
2022-01-23 18:54:51 +00:00
|
|
|
cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." .
|
2022-09-09 15:02:40 +00:00
|
|
|
make -j $(nproc) VERBOSE=1
|
2021-12-24 00:29:21 +00:00
|
|
|
|
|
|
|
linux-cmake-ninja:
|
2022-09-08 03:52:14 +00:00
|
|
|
name: 🐧 Build (Linux, GCC, CMake Ninja)
|
2023-02-21 10:47:40 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-12-24 00:29:21 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 19:13:12 +00:00
|
|
|
uses: actions/checkout@v4
|
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 .
|
2022-09-09 15:02:40 +00:00
|
|
|
cmake --build . -j $(nproc) --verbose
|
2021-12-24 00:29:21 +00:00
|
|
|
|
2022-12-07 13:11:44 +00:00
|
|
|
- name: Build test GDExtension library
|
2021-12-24 00:29:21 +00:00
|
|
|
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 .
|
2022-09-09 15:02:40 +00:00
|
|
|
cmake --build . -j $(nproc) --verbose
|
2021-12-24 00:29:21 +00:00
|
|
|
|
2022-01-23 18:54:51 +00:00
|
|
|
windows-msvc-cmake:
|
2022-09-08 03:52:14 +00:00
|
|
|
name: 🏁 Build (Windows, MSVC, CMake)
|
2022-01-23 18:54:51 +00:00
|
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 19:13:12 +00:00
|
|
|
uses: actions/checkout@v4
|
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" .
|
2022-09-09 15:02:40 +00:00
|
|
|
cmake --build . --verbose
|
2022-01-23 18:54:51 +00:00
|
|
|
|
2022-12-07 13:11:44 +00:00
|
|
|
- name: Build test GDExtension library
|
2022-01-23 18:54:51 +00:00
|
|
|
run: |
|
|
|
|
cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -G"Visual Studio 16 2019" .
|
2022-09-09 15:02:40 +00:00
|
|
|
cmake --build . --verbose
|