Skip to content
Merged
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
2 changes: 1 addition & 1 deletion flutter-web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ WORKDIR /home/builder

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN tar -C /home/builder -Jxf <(curl -L https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.29.0-stable.tar.xz)
RUN tar -C /home/builder -Jxf <(curl -L https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.9-stable.tar.xz)

# Set flutter path
ENV PATH="/home/builder/flutter/bin:/home/builder/flutter/bin/cache/dart-sdk/bin:$PATH"
Expand Down
2 changes: 1 addition & 1 deletion qtox/build_qtbase_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if [ "$MACOS_MINIMUM_SUPPORTED_VERSION" != "10.15" ]; then
fi

# We want -Werror to catch warnings related to macOS version compatibility.
sed -i '' -e 's/-Wextra/-Wextra -Werror "-Wno-#warnings" -Wno-deprecated-declarations/' cmake/QtCompilerFlags.cmake
sed -i '' -e 's/-Wextra/-Wextra -Werror "-Wno-#warnings" -Wno-cast-function-type-mismatch -Wno-deprecated-declarations -Wno-unused-but-set-variable -Wno-vla-cxx-extension/' cmake/QtCompilerFlags.cmake

mkdir _build && pushd _build
../configure \
Expand Down
5 changes: 3 additions & 2 deletions qtox/docker/Dockerfile.alpine-static
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright © 2024-2025 The TokTok team
# Copyright © 2024-2026 The TokTok team

FROM alpine:edge AS common
FROM alpine:3.23 AS common

RUN ["apk", "add", \
"bash", \
Expand Down Expand Up @@ -108,6 +108,7 @@ RUN tar zxf <(curl -L https://github.com/alsa-project/alsa-lib/archive/refs/tags
RUN tar Jxf <(curl -L https://github.com/libsndfile/libsndfile/releases/download/1.2.2/libsndfile-1.2.2.tar.xz) \
&& cd libsndfile-* \
&& cmake \
-DCMAKE_POLICY_VERSION_MINIMUM=3.5 \
-DCMAKE_TOOLCHAIN_FILE="$SYSROOT/static-toolchain.cmake" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="$SYSROOT/usr" \
Expand Down
Loading