Add -Wno-incompatible-pointer-types to ignore cbor and posix-spawn errors

This commit is contained in:
Anthony Wang 2024-05-17 20:20:57 +00:00
parent c474890dba
commit 425c708024
Signed by: a
SSH key fingerprint: SHA256:B5ADfMCqd2M7d/jtXDoihAV/yfXOAbWWri9+GdCN4hQ

View file

@ -47,6 +47,8 @@ build() {
bundle config deployment 'true'
bundle config without 'development test'
bundle config with 'pam_authentication'
bundle config build.cbor --with-cflags="-Wno-incompatible-pointer-types"
bundle config build.posix-spawn --with-cflags="-Wno-incompatible-pointer-types"
bundle install -j$(getconf _NPROCESSORS_ONLN)
yarn install --pure-lockfile
}