mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 15:01:40 +00:00
e8963251be
Pipelines should not be triggered when other pipelines are modified. This saves many resources when messing around with a single pipeline, because other pipelines won't run.
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
|
|
trigger:
|
|
paths:
|
|
include:
|
|
- '*'
|
|
exclude:
|
|
- '.azure/azure-pipelines-android.yml'
|
|
- '.azure/azure-pipelines-vcpkg.yml'
|
|
- '.azure/azure-pipelines-win.yml'
|
|
- '.circleci/config.yml'
|
|
- '.github/workflows/linux.yml'
|
|
- '.github/workflows/sonarcloud.yml'
|
|
- '.cirrus.yml'
|
|
- 'README.md'
|
|
|
|
jobs:
|
|
- job: macOS
|
|
pool:
|
|
vmImage: 'macOS-10.14'
|
|
# recommended by https://github.com/Homebrew/brew/issues/2491#issuecomment-294207661
|
|
# brew update || brew update
|
|
# brew upgrade $PACKAGES
|
|
steps:
|
|
- script: |
|
|
PACKAGES="glib gobject-introspection libsndfile pkg-config jack dbus-glib pulseaudio portaudio sdl2"
|
|
brew install $PACKAGES
|
|
displayName: 'Prerequisites'
|
|
- script: |
|
|
mkdir build && cd build
|
|
export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig"
|
|
cmake -Werror=dev -DCMAKE_INSTALL_PREFIX=$(Build.ArtifactStagingDirectory) -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE=1 -DNO_GUI=1 ..
|
|
make -j`nproc`
|
|
displayName: 'Compile fluidsynth'
|
|
- script: |
|
|
cd build || exit -1
|
|
make -j`nproc` check || exit -1
|
|
displayName: 'Execute Unittests'
|