diff options
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0e22a4f..57bb75b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,9 +7,10 @@ build: stage: build script: - apt-get update && apt-get install -y curl gnupg gdal-bin unzip wget make + - curl -fsSL https://deb.nodesource.com/setup_12.x | bash - - curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - - echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list - - apt-get update && apt-get install -y yarn + - apt-get update && apt-get install -y yarn nodejs - yarn install - mkdir -p dist - make downloadVicmap unzip |