diff options
| author | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-03-24 11:02:00 +0100 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-04-02 09:47:06 +0200 |
| commit | 934863ba3b491d5931542c1321576ce582dbaa72 (patch) | |
| tree | 075f23c61dfa093d961ef7ac181a451b01f9bc3f /ci/ciimage/arch | |
| parent | aee02c9bec49ca0ac972c0710c76382b9484eb65 (diff) | |
| download | meson-934863ba3b491d5931542c1321576ce582dbaa72.tar.gz | |
ci: Added python-jsonschema to docker images
Diffstat (limited to 'ci/ciimage/arch')
| -rwxr-xr-x | ci/ciimage/arch/install.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/ciimage/arch/install.sh b/ci/ciimage/arch/install.sh index f7f0f6d59..1aeb85cc9 100755 --- a/ci/ciimage/arch/install.sh +++ b/ci/ciimage/arch/install.sh @@ -3,7 +3,7 @@ # Inspired by https://github.com/greyltc/docker-archlinux-aur/blob/master/add-aur.sh pkgs=( - python python-setuptools python-wheel python-pip python-pytest-xdist python-gobject + python python-setuptools python-wheel python-pip python-pytest-xdist python-gobject python-jsonschema ninja make git sudo fakeroot autoconf automake patch libelf gcc gcc-fortran gcc-objc vala rust bison flex cython go dlang-dmd mono boost qt5-base gtkmm3 gtest gmock protobuf wxgtk gobject-introspection @@ -13,7 +13,8 @@ pkgs=( # cuda ) -aur_pkgs=(hotdoc scalapack) +aur_pkgs=(scalapack) +pip_pkgs=(hotdoc) cleanup_pkgs=(go) AUR_USER=docker @@ -26,6 +27,7 @@ sed -i "s,PKGEXT='.pkg.tar.xz',PKGEXT='.pkg.tar',g" /etc/makepkg.conf # Install packages pacman -Syu $PACMAN_OPTS "${pkgs[@]}" +python -m pip install "${pip_pkgs[@]}" # Setup the user useradd -m $AUR_USER |
