geode/.github/workflows/build.yml

236 lines
7.6 KiB
YAML
Raw Normal View History

2022-07-30 12:24:03 -04:00
name: Build Binaries
on:
workflow_dispatch:
2023-11-21 12:25:47 -05:00
pull_request:
2022-07-30 12:24:03 -04:00
push:
branches:
2022-07-30 12:24:03 -04:00
- '**' # every branch
- '!no-build-**' # unless marked as no-build
2023-08-01 15:19:23 -04:00
env:
2023-08-01 19:06:20 -04:00
GEODE_CI: ''
2023-08-01 17:11:04 -04:00
CCACHE_ACTION_CI: true
2023-08-01 15:19:23 -04:00
2022-07-30 12:24:03 -04:00
jobs:
build:
strategy:
fail-fast: false
matrix:
config:
2023-08-01 17:11:04 -04:00
- name: Windows
os: windows-latest
id: win
2023-10-15 12:37:34 -04:00
cli_id: win
2023-08-02 17:56:07 -04:00
extra_flags: -T host=x64 -A win32 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DGEODE_DEBUG=On
# uncomment to use vs clang-cl and ninja
#extra_flags: >
# --no-warn-unused-cli
# "-DCMAKE_C_COMPILER:FILEPATH=$env:VCINSTALLDIR\Tools\Llvm\bin\clang-cl.exe"
# "-DCMAKE_CXX_COMPILER:FILEPATH=$env:VCINSTALLDIR\Tools\Llvm\bin\clang-cl.exe"
# -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DGEODE_DEBUG=On
2022-10-14 14:22:51 -04:00
cli_cmd: ''
package_cmd: 'makensis -WX -V3 ./installer/windows/installer.nsi'
installer_path: './installer/windows/geode-installer-win.exe'
2022-10-14 14:22:51 -04:00
2024-01-21 12:21:23 -05:00
- name: macOS
os: macos-latest
id: mac
cli_id: mac
extra_flags: >
-DCMAKE_C_COMPILER=clang
-DCMAKE_CXX_COMPILER=clang++
-DCMAKE_C_COMPILER_LAUNCHER=ccache
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
-DCMAKE_BUILD_TYPE=RelWithDebInfo
-DGEODE_DEBUG=On
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15
2024-01-21 12:21:23 -05:00
-DGEODE_DONT_BUILD_TEST_MODS=1
cli_cmd: 'chmod +x $GITHUB_WORKSPACE/cli/geode'
package_cmd: './installer/mac/package.sh ./bin/nightly ./installer/mac/geode-installer-mac.pkg'
installer_path: './installer/mac/geode-installer-mac.pkg'
2023-10-15 12:37:34 -04:00
2024-01-01 16:58:25 -05:00
- name: Android32
2023-10-15 12:37:34 -04:00
os: ubuntu-latest
2024-01-01 16:58:25 -05:00
id: android32
2023-10-15 12:37:34 -04:00
cli_id: linux
extra_flags: >
-DCMAKE_TOOLCHAIN_FILE=$NDK_HOME/build/cmake/android.toolchain.cmake
2023-10-15 13:08:20 -04:00
-DANDROID_ABI=armeabi-v7a
-DANDROID_PLATFORM=android-23
2023-10-15 12:37:34 -04:00
-DGEODE_DONT_BUILD_TEST_MODS=1
-G Ninja
cli_cmd: 'chmod +x $GITHUB_WORKSPACE/cli/geode'
package_cmd: ''
installer_path: ''
2024-01-01 16:58:25 -05:00
- name: Android64
os: ubuntu-latest
id: android64
cli_id: linux
extra_flags: >
-DCMAKE_TOOLCHAIN_FILE=$NDK_HOME/build/cmake/android.toolchain.cmake
-DANDROID_ABI=arm64-v8a
-DANDROID_PLATFORM=android-23
-DGEODE_DONT_BUILD_TEST_MODS=1
-G Ninja
cli_cmd: 'chmod +x $GITHUB_WORKSPACE/cli/geode'
package_cmd: ''
installer_path: ''
2023-07-31 10:49:54 -04:00
name: Build ${{ matrix.config.name }}
2022-07-30 12:24:03 -04:00
runs-on: ${{ matrix.config.os }}
steps:
2023-08-02 17:56:07 -04:00
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
2022-07-30 12:24:03 -04:00
2023-08-02 17:56:07 -04:00
- name: Setup ccache
uses: hendrikmuhs/ccache-action@v1
2023-08-01 16:48:51 -04:00
with:
key: ${{ matrix.config.os }}
2023-10-15 12:37:34 -04:00
if: matrix.config.id != 'win'
2023-08-01 15:19:23 -04:00
2023-08-02 17:56:07 -04:00
- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1.12.1
2022-07-30 12:24:03 -04:00
with:
2023-08-01 19:14:34 -04:00
arch: amd64_x86
if: matrix.config.id == 'win'
2022-07-30 12:24:03 -04:00
2023-10-15 12:37:34 -04:00
- name: Setup NDK
uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r26b
add-to-path: false
2024-01-01 16:58:25 -05:00
if: matrix.config.id == 'android32' || matrix.config.id == 'android64'
2023-10-15 12:37:34 -04:00
2022-10-14 14:22:51 -04:00
- name: Download CLI
uses: robinraju/release-downloader@v1.8
2022-10-14 14:22:51 -04:00
with:
repository: geode-sdk/cli
latest: true
2023-10-15 12:37:34 -04:00
fileName: '*-${{ matrix.config.cli_id }}.zip'
2022-10-14 14:22:51 -04:00
tarBall: false
zipBall: false
out-file-path: "cli"
2023-07-31 10:49:54 -04:00
- name: Setup CLI
2022-10-14 14:22:51 -04:00
run: |
2023-10-15 12:37:34 -04:00
7z x "${{ github.workspace }}/cli/*-${{ matrix.config.cli_id }}.zip" -o"${{ github.workspace }}/cli"
2022-10-14 14:22:51 -04:00
${{ matrix.config.cli_cmd }}
echo "${{ github.workspace }}/cli" >> $GITHUB_PATH
2023-10-15 12:37:34 -04:00
- name: Setup Android Env
run: |
echo "NDK_HOME=${{ steps.setup-ndk.outputs.ndk-path }}" >> "$GITHUB_ENV"
sudo apt install ninja-build
2024-01-01 16:58:25 -05:00
if: matrix.config.id == 'android32' || matrix.config.id == 'android64'
2023-10-15 12:37:34 -04:00
2023-08-02 17:56:07 -04:00
- name: Configure
run: >
2023-08-01 19:06:20 -04:00
cmake -B ${{ github.workspace }}/build
-DCLI_PATH="${{ github.workspace }}/cli"
2023-08-02 07:01:42 -04:00
${{ matrix.config.extra_flags }}
2022-07-30 12:24:03 -04:00
- name: Build
run: |
2023-08-01 17:11:04 -04:00
cd ${{ github.workspace }}/build
2022-11-28 13:24:30 -05:00
cmake --build . --config RelWithDebInfo --parallel
2023-08-02 18:04:49 -04:00
rm ${{ github.workspace }}/bin/nightly/resources/.geode_cache
2022-07-30 12:24:03 -04:00
- name: Upload Artifacts
uses: actions/upload-artifact@v3
2022-07-30 12:24:03 -04:00
with:
name: geode-${{ matrix.config.id }}
path: ./bin/nightly
2023-07-31 10:49:54 -04:00
2023-08-02 06:53:50 -04:00
- name: Package Installer
run: ${{ matrix.config.package_cmd }}
2024-01-01 16:58:25 -05:00
if: matrix.config.installer_path != ''
2023-07-31 10:49:54 -04:00
2023-08-02 06:53:50 -04:00
- name: Upload Installer
uses: actions/upload-artifact@v3
2023-07-31 10:49:54 -04:00
with:
name: geode-installer-${{ matrix.config.id }}
2023-08-01 11:51:41 -04:00
path: ${{ matrix.config.installer_path }}
2024-01-01 16:58:25 -05:00
if: matrix.config.installer_path != ''
2023-07-31 10:49:54 -04:00
2022-07-30 12:24:03 -04:00
publish:
2023-08-03 20:29:17 -04:00
name: Publish
2022-07-30 12:24:03 -04:00
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
2022-07-30 12:24:03 -04:00
steps:
2023-08-02 17:56:07 -04:00
- name: Checkout
uses: actions/checkout@v3
2023-08-02 06:53:50 -04:00
- name: Declare Version Variables
id: ref
2023-06-10 09:06:29 -04:00
shell: bash
2023-08-01 11:51:41 -04:00
run: |
echo "version=$(cat ${{ github.workspace }}/VERSION | xargs)" >> $GITHUB_OUTPUT
echo "hash=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_OUTPUT
2022-07-30 12:24:03 -04:00
2023-08-02 06:53:50 -04:00
- name: Download Artifacts
2023-08-01 11:10:22 -04:00
uses: actions/download-artifact@v3
2022-07-30 12:24:03 -04:00
with:
path: ${{ github.workspace }}
2023-08-03 20:21:28 -04:00
- name: Move Installers
2023-08-01 11:08:17 -04:00
run: |
2024-01-21 12:48:57 -05:00
mv geode-installer-mac/geode-installer-mac.pkg geode-installer-${{ steps.ref.outputs.hash }}-mac.pkg
mv geode-installer-win/geode-installer-win.exe geode-installer-${{ steps.ref.outputs.hash }}-win.exe
2022-07-30 12:24:03 -04:00
2024-01-21 12:21:23 -05:00
- name: Zip MacOS Artifacts
uses: vimtor/action-zip@v1.1
with:
files: geode-mac/Geode.dylib geode-mac/GeodeBootstrapper.dylib
dest: geode-${{ steps.ref.outputs.hash }}-mac.zip
2022-07-30 12:24:03 -04:00
2023-08-02 06:53:50 -04:00
- name: Zip Windows Artifacts
2023-08-03 19:09:19 -04:00
uses: vimtor/action-zip@v1.1
2022-07-30 12:24:03 -04:00
with:
2023-08-21 18:31:06 -04:00
files: geode-win/XInput9_1_0.dll geode-win/Geode.dll geode-win/GeodeUpdater.exe geode-win/Geode.lib geode-win/Geode.pdb
dest: geode-${{ steps.ref.outputs.hash }}-win.zip
2024-01-01 16:58:25 -05:00
- name: Zip Android32 Artifacts
2023-10-15 12:37:34 -04:00
uses: vimtor/action-zip@v1.1
with:
files: geode-android32/Geode.android32.so
2024-01-01 07:24:51 -05:00
dest: geode-${{ steps.ref.outputs.hash }}-android32.zip
2023-10-15 12:37:34 -04:00
2024-01-01 16:58:25 -05:00
- name: Zip Android64 Artifacts
uses: vimtor/action-zip@v1.1
with:
files: geode-android64/Geode.android64.so
2024-01-01 16:58:25 -05:00
dest: geode-${{ steps.ref.outputs.hash }}-android64.zip
2023-09-16 07:19:31 -04:00
- name: Zip Resources
uses: vimtor/action-zip@v1.1
with:
2024-01-19 11:46:33 -05:00
files: geode-android64/resources
2023-09-16 07:09:05 -04:00
dest: resources.zip
2023-08-03 20:21:28 -04:00
2023-09-16 07:19:31 -04:00
- name: Update Development Release
2023-08-01 11:08:17 -04:00
uses: andelf/nightly-release@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-07-30 12:24:03 -04:00
with:
2023-08-01 11:08:17 -04:00
tag_name: nightly
2023-08-03 20:34:27 -04:00
name: 'Development Release'
2023-08-01 11:08:17 -04:00
body: |
2023-08-03 20:34:27 -04:00
Geode development release for commit ${{ github.sha }}. Since this is not a regular release, Geode will not install the resources automatically, so you should use the installer if you want them.
2023-08-01 11:08:17 -04:00
files: |
./geode-installer-${{ steps.ref.outputs.hash }}-win.exe
2024-01-21 12:21:23 -05:00
./geode-installer-${{ steps.ref.outputs.hash }}-mac.pkg
2023-08-03 20:21:28 -04:00
./geode-${{ steps.ref.outputs.hash }}-win.zip
2024-01-21 12:21:23 -05:00
./geode-${{ steps.ref.outputs.hash }}-mac.zip
2024-01-01 07:24:51 -05:00
./geode-${{ steps.ref.outputs.hash }}-android32.zip
2024-01-01 16:58:25 -05:00
./geode-${{ steps.ref.outputs.hash }}-android64.zip
2023-09-16 07:09:05 -04:00
./resources.zip
2023-12-23 09:52:43 -05:00