diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-03 08:53:34 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-03 08:53:34 +1000 |
commit | 5eaa9feaf37760844c46946ed4c07ffadd3ab84f (patch) | |
tree | 4c72d3a13e0c1d8abbc5eac021201369698d7446 /.gitlab-ci.yml | |
parent | 8c77027738a71bff64ef8d02ac16eaa0c83f7bb3 (diff) |
install node 12
Diffstat (limited to '.gitlab-ci.yml')
-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 |