Skip to content

Commit

Permalink
Upload hydra core artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
OFFTKP committed Oct 23, 2023
1 parent 3ea29de commit 2f163a3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/Hydra_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ jobs:

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Upload core
uses: actions/upload-artifact@v2
with:
name: Windows core
path: '${{github.workspace}}/build/Release/Alber.dll'


MacOS:
runs-on: macos-latest
Expand All @@ -52,6 +59,12 @@ jobs:

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Upload core
uses: actions/upload-artifact@v2
with:
name: MacOS core
path: '${{github.workspace}}/build/libAlber.dylib'

Linux:
runs-on: ubuntu-latest
Expand All @@ -77,6 +90,12 @@ jobs:

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Upload core
uses: actions/upload-artifact@v2
with:
name: Linux core
path: '${{github.workspace}}/build/libAlber.so'

Android-x64:
runs-on: ubuntu-latest
Expand All @@ -102,3 +121,9 @@ jobs:

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Upload core
uses: actions/upload-artifact@v2
with:
name: Android core
path: '${{github.workspace}}/build/libAlber.so'

0 comments on commit 2f163a3

Please sign in to comment.