ci: Remove Python 2 job, update C89 job

Python 2 isn't supported on newer Ubuntu releases. Newer Python
releases have header files which aren't compatible with C89.
This commit is contained in:
Nick Wellnhofer 2024-03-22 18:34:12 +01:00
parent 5a8d9a35a4
commit f907f785ce

View File

@ -12,7 +12,12 @@
gcc:
extends: .test
variables:
CONFIG: "--without-tls"
CFLAGS: "-O2"
gcc:c89:
extends: .test
variables:
CONFIG: "--without-python"
CFLAGS: "-O2 -std=c89 -D_XOPEN_SOURCE=600"
gcc:minimum:
@ -36,12 +41,6 @@ gcc:legacy:
BASE_CONFIG: "--with-legacy"
CFLAGS: "-O2"
gcc:python3:
extends: .test
variables:
CFLAGS: "-O2"
PYTHON: "/usr/bin/python3"
gcc:static:
extends: .test
variables: