1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-19 14:50:07 +03:00

Add CI test for Python 3

This commit is contained in:
Nick Wellnhofer 2020-11-19 17:35:11 +01:00
parent 7c06d99e1f
commit 0ace6c4d7e

View File

@ -10,7 +10,8 @@ default:
# curl git ca-certificates \
# autoconf automake libtool pkg-config \
# make gcc clang llvm \
# python-dev zlib1g-dev liblzma-dev libgcrypt-dev \
# zlib1g-dev liblzma-dev libgcrypt-dev \
# python-dev python3-dev \
# cmake
# WORKDIR /tests
# RUN curl https://www.w3.org/XML/Test/xmlts20080827.tar.gz |tar xz
@ -29,6 +30,12 @@ gcc:
variables:
CFLAGS: "-O2 -std=c89 -D_XOPEN_SOURCE=700"
gcc:python3:
extends: .test
variables:
CONFIG: "--with-python=/usr/bin/python3"
CFLAGS: "-O2"
clang:asan:
extends: .test
variables: