blob: aa57dfd6404822b3156313d4566658a80202f07e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
image: debian
before_script:
- apt-get update -y
- apt-get install -y locales openjdk-11-jre python3-pip
- sed -i 's/# \(es_ES.UTF-8 UTF-8\)/\1/' /etc/locale.gen
- sed -i 's/# \(en_US.UTF-8 UTF-8\)/\1/' /etc/locale.gen
- dpkg-reconfigure --frontend=noninteractive locales
- pip3 install html5validator
- export LANG=es_ES.UTF-8 LANGUAGE=es_ES
test:
script:
- echo -n 'test'
|