mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-20 01:11:40 +03:00
14 lines
449 B
Bash
Executable File
14 lines
449 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
echo "----- install prerequisite packages -----"
|
|
pacman -Syy --noconfirm
|
|
pacman -Sy --noconfirm curl icu base-devel libxml2 python3 glibc
|
|
|
|
# FIXME: chrono 0.4.20 basically requires one to set up a correct timezone
|
|
# We set /etc/localtime in a Docker context
|
|
# see https://github.com/chronotope/chrono/issues/755
|
|
ln -s /usr/share/zoneinfo/Europe/Paris /etc/localtime
|
|
|
|
curl -O https://bootstrap.pypa.io/get-pip.py
|
|
python3 get-pip.py
|