mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-17 17:23:57 +12:00
Update Hydra_Build.yml
This commit is contained in:
parent
a36c892380
commit
fdcef35a45
1 changed files with 27 additions and 3 deletions
30
.github/workflows/Hydra_Build.yml
vendored
30
.github/workflows/Hydra_Build.yml
vendored
|
@ -44,7 +44,15 @@ jobs:
|
||||||
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DBUILD_LIBRETRO_CORE=ON
|
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DBUILD_LIBRETRO_CORE=ON
|
||||||
|
|
||||||
- name: Build (Again)
|
- name: Build (Again)
|
||||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --clean-first
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
||||||
|
|
||||||
|
- name: Upload Libretro core
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: Windows Libretro core
|
||||||
|
path: |
|
||||||
|
'${{github.workspace}}/build/${{ env.BUILD_TYPE }}/panda3ds_libretro.dll'
|
||||||
|
'${{github.workspace}}/docs/libretro/panda3ds_libretro.info'
|
||||||
|
|
||||||
MacOS:
|
MacOS:
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
|
@ -79,7 +87,15 @@ jobs:
|
||||||
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DBUILD_LIBRETRO_CORE=ON
|
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DBUILD_LIBRETRO_CORE=ON
|
||||||
|
|
||||||
- name: Build (Again)
|
- name: Build (Again)
|
||||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --clean-first
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
||||||
|
|
||||||
|
- name: Upload Libretro core
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: MacOS Libretro core
|
||||||
|
path: |
|
||||||
|
'${{github.workspace}}/build/panda3ds_libretro.dylib'
|
||||||
|
'${{github.workspace}}/docs/libretro/panda3ds_libretro.info'
|
||||||
|
|
||||||
Linux:
|
Linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -124,7 +140,15 @@ jobs:
|
||||||
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
|
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)
|
- name: Build (Again)
|
||||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --clean-first
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
||||||
|
|
||||||
|
- name: Upload Libretro core
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: Linux Libretro core
|
||||||
|
path: |
|
||||||
|
'${{github.workspace}}/build/panda3ds_libretro.so'
|
||||||
|
'${{github.workspace}}/docs/libretro/panda3ds_libretro.info'
|
||||||
|
|
||||||
Android-x64:
|
Android-x64:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue