From 027cd076961332f921b30b910d92cb0ad35185d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20N=C3=A1jera?= Date: Thu, 19 Apr 2018 13:19:05 +0200 Subject: [PATCH] install wget in container --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4ce3e65..0ab92ff 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,10 +2,14 @@ image: najeraoscar/latex-emacs-min test: script: - - apt-get update + - apt-get update && apt install wget - wget https://github.com/gohugoio/hugo/releases/download/v0.39/hugo_0.39_Linux-64bit.deb - dpkg -i hugo*.deb - hugo version + - mkdir -p ~/tex/latex + - cd ~/tex/latex/; git clone https://github.com/Titan-C/AltaCV.git + - emacs --batch -Q --script genfiles.el + - cd org-cv-exports; latex -pdf altacv.org.tex - cd doc; hugo except: - master