Add LR core to CI

This commit is contained in:
wheremyfoodat 2024-07-09 19:59:52 +03:00 committed by GitHub
parent f248893ffe
commit 4826927330
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,12 +32,17 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Upload core
- name: Upload Hydra core
uses: actions/upload-artifact@v2
with:
name: Windows core
name: Windows Hydra core
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:
runs-on: macos-13
@ -63,9 +68,15 @@ jobs:
- name: Upload core
uses: actions/upload-artifact@v2
with:
name: MacOS core
name: MacOS Hydra core
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:
runs-on: ubuntu-latest
@ -100,9 +111,15 @@ jobs:
- name: Upload core
uses: actions/upload-artifact@v2
with:
name: Linux core
name: Linux Hydra core
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:
runs-on: ubuntu-latest
@ -131,5 +148,5 @@ jobs:
- name: Upload core
uses: actions/upload-artifact@v2
with:
name: Android core
name: Android Hydra core
path: '${{github.workspace}}/build/libAlber.so'