summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Walpen <dev@submerge.ch>2022-01-13 15:13:24 +0100
committerfalkTX <falktx@falktx.com>2022-01-15 15:09:56 +0000
commit54217a5d8d528adf1c85ee0f8dfa7c0f0b4a6dbc (patch)
treedb6a13274cceb7882bf89a14dec19d5f6d7d162d
parente332bd7e7228a96980fbe26142318f68cf9e326b (diff)
downloadjack2-54217a5d8d528adf1c85ee0f8dfa7c0f0b4a6dbc.tar.gz
CI: Bogus install prefix in FreeBSD Cirrus CI.
Apparently the ${HOME} variable is set to the filesystem root "/" in Cirrus CI FreeBSD instances. Just create an installation directory without it, then. While here, set --pkgconfigdir to closely mimick the build in the FreeBSD ports tree.
-rw-r--r--.cirrus.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 5fe1fd3d..d78700db 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -9,19 +9,19 @@ task:
CPPFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
LDFLAGS: -lreadline -L/usr/local/lib -fstack-protector-strong
prepare_script:
- - mkdir ${HOME}/install
+ - mkdir /Install
matrix:
- name: FreeBSD Minimal Build
dependencies_script:
- pkg install -y pkgconf python3 libsndfile libsamplerate libsysinfo readline expat
config_script:
- - python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=no --classic --readline=yes --opus=no --example-tools=no --prefix ${HOME}/install
+ - python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=no --classic --readline=yes --opus=no --example-tools=no --prefix /Install --pkgconfigdir libdata/pkgconfig
- name: FreeBSD All Options
dependencies_script:
- pkg install -y pkgconf python3 libsndfile libsamplerate libsysinfo readline alsa-lib dbus expat opus
config_script:
- - python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --readline=yes --opus=yes --prefix ${HOME}/install
+ - python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --readline=yes --opus=yes --prefix /Install --pkgconfigdir libdata/pkgconfig
build_script:
- python3 ./waf