From bee42dd5cc127ca63a2def010bc16f90785e5e37 Mon Sep 17 00:00:00 2001 From: derselbst Date: Fri, 14 Jan 2022 17:31:13 +0100 Subject: [PATCH] Call make install in Mac CI pipeline --- .azure/azure-pipelines-mac.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.azure/azure-pipelines-mac.yml b/.azure/azure-pipelines-mac.yml index 2bf8b007..7cb44680 100644 --- a/.azure/azure-pipelines-mac.yml +++ b/.azure/azure-pipelines-mac.yml @@ -42,7 +42,7 @@ jobs: set -ex mkdir build && cd build export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig" - cmake -Werror=dev -DCMAKE_INSTALL_PREFIX=$(Build.ArtifactStagingDirectory) $(CMakeFlags) -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE=1 -DNO_GUI=1 .. + cmake -Werror=dev $(CMakeFlags) -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE=1 -DNO_GUI=1 .. make -j3 displayName: 'Compile fluidsynth' - script: | @@ -50,3 +50,15 @@ jobs: cd build || exit -1 make -j3 check || exit -1 displayName: 'Execute Unittests' + - script: | + set -ex + cd build + sudo make install + rm -f install_manifest.txt + displayName: 'Install fluidsynth to default location' + - script: | + set -ex + cd build + cmake -DCMAKE_INSTALL_PREFIX=$(Build.ArtifactStagingDirectory) .. + make install + displayName: 'Install fluidsynth to artifact dir'