2023-07-25 15:09:56 +02:00
|
|
|
name: ContinuousIntegration
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
BUILD_TYPE: Debug
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
timeout-minutes: 10
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-04-16 10:34:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 15:09:56 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
2024-05-28 22:38:52 +02:00
|
|
|
run: sudo apt update && sudo apt -y install libsodium-dev cmake
|
2023-07-25 15:09:56 +02:00
|
|
|
|
|
|
|
- name: Configure CMake
|
|
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
|
|
|
|
|
|
|
- name: Build
|
2024-05-28 09:01:58 +02:00
|
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
|
2023-07-25 15:09:56 +02:00
|
|
|
|
2024-05-29 10:39:24 +02:00
|
|
|
android:
|
|
|
|
timeout-minutes: 30
|
|
|
|
# contains sections copied from sdl repo
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- uses: nttld/setup-ndk@v1
|
|
|
|
id: setup_ndk
|
|
|
|
with:
|
2024-05-30 13:08:23 +02:00
|
|
|
local-cache: false # https://github.com/nttld/setup-ndk/issues/518
|
2024-05-29 10:39:24 +02:00
|
|
|
ndk-version: r26d
|
|
|
|
|
|
|
|
- uses: actions/setup-java@v4
|
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: '17'
|
|
|
|
|
|
|
|
- name: update vcpkg
|
|
|
|
run: |
|
|
|
|
git clone https://github.com/microsoft/vcpkg.git
|
|
|
|
|
|
|
|
- name: Install Dependencies (host)
|
|
|
|
run: sudo apt update && sudo apt -y install cmake pkg-config nasm
|
|
|
|
|
|
|
|
- name: Install Dependencies (target)
|
|
|
|
env:
|
|
|
|
ANDROID_NDK_HOME: ${{steps.setup_ndk.outputs.ndk-path}}
|
|
|
|
run: vcpkg install --triplet arm64-android --overlay-ports=vcpkg/ports libsodium opus libvpx libpng libjpeg-turbo
|
|
|
|
|
|
|
|
# vcpkg scripts root /usr/local/share/vcpkg/scripts
|
|
|
|
- name: Configure CMake
|
|
|
|
env:
|
|
|
|
ANDROID_NDK_HOME: ${{steps.setup_ndk.outputs.ndk-path}}
|
|
|
|
#run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=${{steps.setup_ndk.outputs.ndk-path}}/build/cmake/android.toolchain.cmake -DANDROID_PLATFORM=23 -DANDROID_ABI=arm64-v8a
|
|
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=/usr/local/share/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=arm64-android -DANDROID=1 -DANDROID_PLATFORM=23 -DANDROID_ABI=arm64-v8a -DVCPKG_CHAINLOAD_TOOLCHAIN_FILE=${{steps.setup_ndk.outputs.ndk-path}}/build/cmake/android.toolchain.cmake -DSDL3IMAGE_JPG_SHARED=OFF -DSDL3IMAGE_PNG_SHARED=OFF -DTOMATO_MAIN_SO=ON
|
|
|
|
|
|
|
|
- name: Build (tomato)
|
|
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
|
|
|
|
|
2023-07-25 15:09:56 +02:00
|
|
|
macos:
|
|
|
|
timeout-minutes: 10
|
|
|
|
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
steps:
|
2024-04-16 10:34:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 15:09:56 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: brew install libsodium
|
|
|
|
|
|
|
|
- name: Configure CMake
|
|
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
|
|
|
|
|
|
|
- name: Build
|
2024-05-28 09:01:58 +02:00
|
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
|
2023-07-25 15:09:56 +02:00
|
|
|
|
|
|
|
windows:
|
2024-04-16 10:34:47 +02:00
|
|
|
timeout-minutes: 15
|
2023-07-25 15:09:56 +02:00
|
|
|
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2024-04-16 10:34:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 15:09:56 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
2024-05-28 08:50:05 +02:00
|
|
|
- name: update vcpkg
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cd C:/vcpkg
|
|
|
|
git pull
|
|
|
|
|
2023-07-25 15:09:56 +02:00
|
|
|
- name: Install Dependencies
|
2024-04-25 17:41:25 +02:00
|
|
|
run: vcpkg install libsodium:x64-windows-static pthreads:x64-windows-static pkgconf:x64-windows
|
2023-07-25 15:09:56 +02:00
|
|
|
|
|
|
|
# setup vs env
|
|
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
with:
|
|
|
|
arch: amd64
|
|
|
|
|
2024-04-16 10:34:47 +02:00
|
|
|
## sdl_image vendored needs nasm for dav1d
|
|
|
|
#- uses: ilammy/setup-nasm@v1
|
|
|
|
|
2023-07-25 15:09:56 +02:00
|
|
|
- name: Configure CMake
|
2024-04-25 17:41:25 +02:00
|
|
|
run: cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static -DSDL3IMAGE_VENDORED=ON -DSDL3IMAGE_DEPS_SHARED=ON -DSDL3IMAGE_JXL=OFF -DSDL3IMAGE_AVIF=OFF -DPKG_CONFIG_EXECUTABLE=C:/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe
|
2023-07-25 15:09:56 +02:00
|
|
|
|
|
|
|
- name: Build
|
2024-05-28 09:01:58 +02:00
|
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
|
2023-12-19 01:56:35 +01:00
|
|
|
|