Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .ci/build/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ COMMON_FLAGS=(
-DNIGHTLY_BUILD="${NIGHTLY:-OFF}"
)

# force static opus
if [ "$OPUS" = "true" ]; then
COMMON_FLAGS+=(-DOpus_FORCE_BUNDLED=ON)
fi

# cmd line stuff
EXTRA_ARGS=("$@")

Expand Down
5 changes: 5 additions & 0 deletions .ci/build/platform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
QT=OFF
STATIC=OFF

# set to ON to force a static opus
OPUS=OFF

uname -s

# special case for Windows (FU microsoft)
Expand All @@ -31,6 +34,7 @@ else
OPENSSL=ON
SIRIT=ON
SUPPORTS_TARGETS=ON
OPUS=ON
;;
Darwin*)
PLATFORM=macos
Expand Down Expand Up @@ -81,5 +85,6 @@ export SUPPORTS_TARGETS
export SIRIT
export STATIC
export QT
export OPUS

# TODO(crueter): document outputs n such
2 changes: 1 addition & 1 deletion .ci/deps/arch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ echo "Installing debloated packages..."
echo "---------------------------------------------------------------"
wget --retry-connrefused --tries=30 "$EXTRA_PACKAGES"
chmod +x get-debloated-pkgs.sh
./get-debloated-pkgs.sh --add-mesa qt6-base-mini libxml2-mini opus-nano intel-media-driver
./get-debloated-pkgs.sh --add-mesa qt6-base-mini libxml2-mini intel-media-driver

echo "All done!"
echo "---------------------------------------------------------------"
Loading