summarylogtreecommitdiffstats
path: root/Dockerfile.build_and_test
diff options
context:
space:
mode:
authorJan Kohnert2021-01-24 12:25:21 +0100
committerJan Kohnert2021-02-15 10:34:56 +0100
commit728c6fc3578473386a9d431a71807347429346bc (patch)
tree6d7ef2ebbddec54e9f5a8e49b1f4e53cc88250ca /Dockerfile.build_and_test
parentbc3f98e0c8a9f59765fdba55720681584146402f (diff)
downloadaur-728c6fc3578473386a9d431a71807347429346bc.tar.gz
Added CI/CD, fixed dependencies, moved ImageMagick->GraphicMagick,
included upstream GraphicsMagick patch, explicitly enabled/disabled features in cmake call.
Diffstat (limited to 'Dockerfile.build_and_test')
-rw-r--r--Dockerfile.build_and_test10
1 files changed, 10 insertions, 0 deletions
diff --git a/Dockerfile.build_and_test b/Dockerfile.build_and_test
new file mode 100644
index 000000000000..0945f26e9ee9
--- /dev/null
+++ b/Dockerfile.build_and_test
@@ -0,0 +1,10 @@
+ARG REGISTRY
+
+FROM "$REGISTRY/common/gitlab-helper/archlinux-yay:master"
+
+RUN (\
+ yay -Syuq --noconfirm --needed python-numpy plplot gsl hdf4 netcdf-cxx wxgtk2 fftw pslib eccodes udunits eigen graphicsmagick libgeotiff \
+ && yes | yay -Scc --noconfirm \
+ && rm -rf ~/.cache/yay \
+ && sudo rm -rf /var/cache/pacman/pkg/* \
+)