Skip to content

Update skia #3026

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Oct 25, 2024
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 externals/depot_tools
Submodule depot_tools updated from f44f21 to ecad42
2 changes: 1 addition & 1 deletion externals/skia
2 changes: 1 addition & 1 deletion scripts/Docker/debian/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Arguments:
# DOTNET_SDK_VERSION - the version of dotnet for the Cake script [ 8.0 | * ]

FROM amd64/debian:10
FROM amd64/debian:11

# Install the required packages
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion scripts/Docker/debian/arm64v8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Arguments:
# DOTNET_SDK_VERSION - the version of dotnet for the Cake script [ 8.0 | * ]

FROM arm64v8/debian:10
FROM arm64v8/debian:11

# Install the required packages
RUN apt-get update \
Expand Down
6 changes: 3 additions & 3 deletions scripts/Docker/debian/clang-cross/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
# FONTCONFIG_VERSION - the exact version of libfontconfig1 to use [ 2.13.1-2 | * ]

ARG IMAGE_ARCH=amd64
FROM ${IMAGE_ARCH}/debian:10
FROM ${IMAGE_ARCH}/debian:11

# Install the required packages
RUN apt-get update \
&& apt-get install -y \
curl python3 git clang-13 ninja-build \
curl python3 git clang-13 ninja-build xz-utils \
&& rm -rf /var/lib/apt/lists/*

# Install the cross-compilation GCC toolchain
ARG TOOLCHAIN_VERSION=8
ARG TOOLCHAIN_VERSION=9
ARG TOOLCHAIN_ARCH=arm-linux-gnueabihf
ARG TOOLCHAIN_ARCH_SHORT=armhf
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion scripts/azure-pipelines-variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variables:
VISUAL_STUDIO_VERSION: ''
DOTNET_VERSION: '8.0.304'
DOTNET_VERSION_PREVIEW: ''
DOTNET_WORKLOAD_SOURCE: ''
DOTNET_WORKLOAD_SOURCE: 'https://github.com/dotnet/maui/releases/download/8.0.82/8.0.82.json'
DOTNET_WORKLOAD_TIZEN: '8.0.149'
CONFIGURATION: 'Release'
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
Expand Down
Loading