mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-16 20:21:31 +12:00
Add LR core to CI
This commit is contained in:
parent
f248893ffe
commit
4826927330
1 changed files with 22 additions and 5 deletions
27
.github/workflows/Hydra_Build.yml
vendored
27
.github/workflows/Hydra_Build.yml
vendored
|
@ -32,12 +32,17 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
||||||
|
|
||||||
- name: Upload core
|
- name: Upload Hydra core
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: Windows core
|
name: Windows Hydra core
|
||||||
path: '${{github.workspace}}/build/${{ env.BUILD_TYPE }}/Alber.dll'
|
path: '${{github.workspace}}/build/${{ env.BUILD_TYPE }}/Alber.dll'
|
||||||
|
|
||||||
|
- name: Configure CMake (Again)
|
||||||
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DBUILD_LIBRETRO_CORE=ON
|
||||||
|
|
||||||
|
- name: Build (Again)
|
||||||
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --clean-first
|
||||||
|
|
||||||
MacOS:
|
MacOS:
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
|
@ -63,9 +68,15 @@ jobs:
|
||||||
- name: Upload core
|
- name: Upload core
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: MacOS core
|
name: MacOS Hydra core
|
||||||
path: '${{github.workspace}}/build/libAlber.dylib'
|
path: '${{github.workspace}}/build/libAlber.dylib'
|
||||||
|
|
||||||
|
- name: Configure CMake (Again)
|
||||||
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DBUILD_LIBRETRO_CORE=ON
|
||||||
|
|
||||||
|
- name: Build (Again)
|
||||||
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --clean-first
|
||||||
|
|
||||||
Linux:
|
Linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
@ -100,9 +111,15 @@ jobs:
|
||||||
- name: Upload core
|
- name: Upload core
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: Linux core
|
name: Linux Hydra core
|
||||||
path: '${{github.workspace}}/build/libAlber.so'
|
path: '${{github.workspace}}/build/libAlber.so'
|
||||||
|
|
||||||
|
- name: Configure CMake (Again)
|
||||||
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang-17 -DCMAKE_CXX_COMPILER=clang++-17 -DENABLE_USER_BUILD=ON -DBUILD_LIBRETRO_CORE=ON
|
||||||
|
|
||||||
|
- name: Build (Again)
|
||||||
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --clean-first
|
||||||
|
|
||||||
Android-x64:
|
Android-x64:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
@ -131,5 +148,5 @@ jobs:
|
||||||
- name: Upload core
|
- name: Upload core
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: Android core
|
name: Android Hydra core
|
||||||
path: '${{github.workspace}}/build/libAlber.so'
|
path: '${{github.workspace}}/build/libAlber.so'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue