-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'cdd2575f7fbab1d8162600f4048bc37503c80e28'
- Loading branch information
Showing
451 changed files
with
31,843 additions
and
41,645 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# The image is also used for libxslt, that's why we need git and | ||
# libgcrypt-dev. | ||
|
||
FROM ubuntu:22.10 | ||
FROM ubuntu:23.10 | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && \ | ||
apt-get upgrade -y && \ | ||
apt-get install -y --no-install-recommends \ | ||
curl git ca-certificates \ | ||
autoconf automake libtool pkg-config \ | ||
make gcc clang llvm \ | ||
make gcc clang llvm libclang-rt-dev \ | ||
zlib1g-dev liblzma-dev libgcrypt-dev \ | ||
python2-dev python3-dev \ | ||
cmake | ||
python3-dev \ | ||
cmake meson | ||
WORKDIR /tests | ||
RUN curl https://www.w3.org/XML/Test/xmlts20080827.tar.gz |tar xz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
# compile with the following warnings: | ||
# --warnlevel 3 : passes to the compiler -Wall -Wextra -Wpedantic | ||
# --werror : passes to the compiler -Werror | ||
# --default-library : can be 'shared', 'static' or 'both' | ||
meson setup \ | ||
--warnlevel 3 \ | ||
--werror \ | ||
--buildtype=debugoptimized \ | ||
--default-library shared \ | ||
builddir | ||
|
||
ninja -C builddir test | ||
|
Oops, something went wrong.