Update cmake-multi-platform.yml

main
W3AXL 1 year ago committed by GitHub
parent 6d8c7ca130
commit 415f1c48c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,6 +1,6 @@
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform. # This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml # See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name: CMake on multiple platforms name: Cross Platform Shared Library Build
on: on:
push: push:
@ -59,3 +59,12 @@ jobs:
- name: Build - name: Build
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator). # Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
- name: Save Library Artifact
# Upload the dll or so
uses: actions/upload-artifact@v4
with:
name: dvmvocoder
path: |
${{ steps.strings.outputs.build-output-dir }}/*.dll
${{ steps.strings.outputs.build-output-dir }}/*.so

Loading…
Cancel
Save

Powered by TurnKey Linux.