mirror of
https://github.com/ZDoom/ZMusic.git
synced 2024-11-26 22:01:32 +00:00
- updated github actions workflow
* fix warnings * add upload artifacts step (disabled by default because of warnings it reported on every symlink inside installation directory)
This commit is contained in:
parent
89f3d65734
commit
519b76b6e7
1 changed files with 9 additions and 3 deletions
12
.github/workflows/continuous_integration.yml
vendored
12
.github/workflows/continuous_integration.yml
vendored
|
@ -21,13 +21,12 @@ jobs:
|
|||
- name: macOS Clang - Dynamic Deps
|
||||
os: macos-latest
|
||||
build_type: Release
|
||||
deps_cmd: brew install glib pkg-config
|
||||
|
||||
- name: macOS Clang - Static Deps
|
||||
os: macos-latest
|
||||
build_type: Release
|
||||
cmake_options: -DDYN_FLUIDSYNTH=OFF -DDYN_MPG123=OFF -DDYN_SNDFILE=OFF
|
||||
deps_cmd: brew install glib libsndfile mpg123 pkg-config
|
||||
deps_cmd: brew install libsndfile mpg123
|
||||
|
||||
- name: Linux GCC - Dynamic Deps
|
||||
os: ubuntu-latest
|
||||
|
@ -51,7 +50,7 @@ jobs:
|
|||
deps_cmd: sudo apt update && sudo apt install libasound2-dev libglib2.0-dev libmpg123-dev libsndfile1-dev
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install Dependencies
|
||||
shell: bash
|
||||
|
@ -87,3 +86,10 @@ jobs:
|
|||
else
|
||||
./list_midi_devices
|
||||
fi
|
||||
|
||||
- name: Upload Install Directory
|
||||
if: false # Remove this line to upload build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ matrix.config.name }}
|
||||
path: build_install
|
||||
|
|
Loading…
Reference in a new issue