Some checks failed
		
		
	
	ContinuousDelivery / linux-ubuntu (push) Has been cancelled
				
			ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
				
			ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
				
			ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
				
			ContinuousDelivery / windows (windows-2022, ) (push) Has been cancelled
				
			ContinuousDelivery / windows (windows-2022, asan) (push) Has been cancelled
				
			ContinuousIntegration /  on ubuntu-24.04-arm (push) Has been cancelled
				
			ContinuousIntegration / asan on ubuntu-24.04-arm (push) Has been cancelled
				
			ContinuousIntegration /  on ubuntu-latest (push) Has been cancelled
				
			ContinuousIntegration / asan on ubuntu-latest (push) Has been cancelled
				
			ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
				
			ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
				
			ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
				
			ContinuousIntegration / macos (push) Has been cancelled
				
			ContinuousIntegration / windows (push) Has been cancelled
				
			ContinuousDelivery / dumpsyms (push) Has been cancelled
				
			ContinuousDelivery / release (push) Has been cancelled
				
			
		
			
				
	
	
		
			195 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			195 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: ContinuousIntegration
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [ master ]
 | 
						|
  pull_request:
 | 
						|
    branches: [ master ]
 | 
						|
 | 
						|
env:
 | 
						|
  # maybe pull into matrix?
 | 
						|
  BUILD_TYPE: Debug
 | 
						|
 | 
						|
jobs:
 | 
						|
  linux:
 | 
						|
    timeout-minutes: 10
 | 
						|
 | 
						|
    runs-on: ${{matrix.os}}
 | 
						|
    name:  ${{matrix.type}} on ${{matrix.os}}
 | 
						|
 | 
						|
    strategy:
 | 
						|
      fail-fast: false
 | 
						|
      matrix:
 | 
						|
        type: ['', 'asan']
 | 
						|
        os: ['ubuntu-latest', 'ubuntu-24.04-arm']
 | 
						|
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v4
 | 
						|
      with:
 | 
						|
        submodules: recursive
 | 
						|
 | 
						|
    - name: Install Dependencies
 | 
						|
      run: sudo apt update && sudo apt -y install libsodium-dev cmake libx11-dev libxext-dev libxrandr-dev
 | 
						|
 | 
						|
    - name: ccache
 | 
						|
      uses: hendrikmuhs/ccache-action@v1.2
 | 
						|
      with:
 | 
						|
        key: ${{github.event.repository.name}}-${{github.job}}-${{matrix.os}}-${{matrix.type}}
 | 
						|
 | 
						|
    - name: Configure CMake
 | 
						|
      run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DTOMATO_ASAN=${{matrix.type == 'asan' && 'ON' || 'OFF'}}
 | 
						|
 | 
						|
    - name: Build
 | 
						|
      run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
 | 
						|
 | 
						|
  android:
 | 
						|
    timeout-minutes: 30
 | 
						|
    # contains sections copied from sdl repo
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    permissions:
 | 
						|
      # vcpkg caching action
 | 
						|
      actions: read
 | 
						|
      contents: read
 | 
						|
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        platform:
 | 
						|
          - vcpkg_toolkit: arm-neon-android-23
 | 
						|
            ndk_abi: armeabi-v7a
 | 
						|
          - vcpkg_toolkit: arm64-android-23
 | 
						|
            ndk_abi: arm64-v8a
 | 
						|
          - vcpkg_toolkit: x64-android-23
 | 
						|
            ndk_abi: x86_64
 | 
						|
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v4
 | 
						|
      with:
 | 
						|
        submodules: recursive
 | 
						|
 | 
						|
    - uses: actions/checkout@v4
 | 
						|
      with:
 | 
						|
        repository: 'Green-Sky/vcpkg_android_triplets'
 | 
						|
        path: 'vcpkg_android_triplets'
 | 
						|
 | 
						|
    - uses: nttld/setup-ndk@v1
 | 
						|
      id: setup_ndk
 | 
						|
      with:
 | 
						|
        local-cache: false # https://github.com/nttld/setup-ndk/issues/518
 | 
						|
        ndk-version: r26d
 | 
						|
 | 
						|
    - uses: actions/setup-java@v4
 | 
						|
      with:
 | 
						|
        distribution: 'temurin'
 | 
						|
        java-version: '17'
 | 
						|
 | 
						|
    - name: Install Dependencies (host)
 | 
						|
      run: sudo apt update && sudo apt -y install cmake pkg-config nasm
 | 
						|
 | 
						|
    - name: Restore vcpkg cache
 | 
						|
      id: vcpkg-cache
 | 
						|
      uses: TAServers/vcpkg-cache@v3
 | 
						|
      with:
 | 
						|
        token: ${{secrets.GITHUB_TOKEN}}
 | 
						|
 | 
						|
    - name: Install Dependencies (target)
 | 
						|
      env:
 | 
						|
        ANDROID_NDK_HOME: ${{steps.setup_ndk.outputs.ndk-path}}
 | 
						|
        VCPKG_FEATURE_FLAGS: "binarycaching"
 | 
						|
        VCPKG_BINARY_SOURCES: "clear;files,${{steps.vcpkg-cache.outputs.path}},readwrite"
 | 
						|
      run: vcpkg install --overlay-triplets=vcpkg_android_triplets --triplet ${{matrix.platform.vcpkg_toolkit}} libsodium opus libvpx libpng libjpeg-turbo freetype
 | 
						|
 | 
						|
    # 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=/usr/local/share/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=${{matrix.platform.vcpkg_toolkit}} -DANDROID=1 -DANDROID_PLATFORM=23 -DANDROID_ABI=${{matrix.platform.ndk_abi}} -DVCPKG_CHAINLOAD_TOOLCHAIN_FILE=${{steps.setup_ndk.outputs.ndk-path}}/build/cmake/android.toolchain.cmake -DSDL_ANDROID_JAR=ON -DSDLIMAGE_JPG_SHARED=OFF -DSDLIMAGE_PNG_SHARED=OFF -DTOMATO_MAIN_SO=ON
 | 
						|
 | 
						|
    - name: Build (tomato)
 | 
						|
      run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
 | 
						|
 | 
						|
    - name: Build (SDL3-jar) (workaround)
 | 
						|
      run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t SDL3-jar
 | 
						|
 | 
						|
    - name: Build (apk)
 | 
						|
      run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato-apk
 | 
						|
 | 
						|
    - uses: actions/upload-artifact@v4
 | 
						|
      with:
 | 
						|
        name: ${{ github.event.repository.name }}-${{matrix.platform.vcpkg_toolkit}}
 | 
						|
        # TODO: do propper packing
 | 
						|
        path: |
 | 
						|
          ${{github.workspace}}/build/android/tomato.apk
 | 
						|
 | 
						|
  macos:
 | 
						|
    timeout-minutes: 10
 | 
						|
 | 
						|
    runs-on: macos-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v4
 | 
						|
      with:
 | 
						|
        submodules: recursive
 | 
						|
 | 
						|
    - name: Install Dependencies
 | 
						|
      run: brew install libsodium
 | 
						|
 | 
						|
    - name: ccache
 | 
						|
      uses: hendrikmuhs/ccache-action@v1.2
 | 
						|
      with:
 | 
						|
        key: ${{github.event.repository.name}}-${{github.job}}
 | 
						|
 | 
						|
    - name: Configure CMake
 | 
						|
      run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
 | 
						|
 | 
						|
    - name: Build
 | 
						|
      run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
 | 
						|
 | 
						|
  windows:
 | 
						|
    timeout-minutes: 15
 | 
						|
 | 
						|
    runs-on: windows-latest
 | 
						|
 | 
						|
    permissions:
 | 
						|
      # vcpkg caching action
 | 
						|
      actions: read
 | 
						|
      contents: read
 | 
						|
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v4
 | 
						|
      with:
 | 
						|
        submodules: recursive
 | 
						|
 | 
						|
    - name: Restore vcpkg cache
 | 
						|
      id: vcpkg-cache
 | 
						|
      uses: TAServers/vcpkg-cache@v3
 | 
						|
      with:
 | 
						|
        token: ${{secrets.GITHUB_TOKEN}}
 | 
						|
 | 
						|
    - name: Install Dependencies
 | 
						|
      env:
 | 
						|
        VCPKG_FEATURE_FLAGS: "binarycaching"
 | 
						|
        VCPKG_BINARY_SOURCES: "clear;files,${{steps.vcpkg-cache.outputs.path}},readwrite"
 | 
						|
      run: vcpkg install pkgconf:x64-windows libsodium:x64-windows-static pthreads:x64-windows-static opus:x64-windows-static libvpx:x64-windows-static zstd:x64-windows-static libwebp:x64-windows-static libpng:x64-windows-static libjpeg-turbo:x64-windows-static freetype:x64-windows-static
 | 
						|
 | 
						|
    # setup vs env
 | 
						|
    - uses: ilammy/msvc-dev-cmd@v1
 | 
						|
      with:
 | 
						|
        arch: amd64
 | 
						|
 | 
						|
    - name: Configure CMake
 | 
						|
      env:
 | 
						|
        CXXFLAGS: "/D_MSVC_STL_HARDENING=1"
 | 
						|
      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
 | 
						|
        -DTOMATO_DEP_LIBWEBP_USE_SYSTEM=ON
 | 
						|
        -DSDLIMAGE_VENDORED=OFF -DSDLIMAGE_DEPS_SHARED=OFF -DSDLIMAGE_JXL=OFF -DSDLIMAGE_AVIF=OFF
 | 
						|
        -DPKG_CONFIG_EXECUTABLE=C:/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe
 | 
						|
 | 
						|
    - name: Build
 | 
						|
      run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
 | 
						|
 |