From f61c0e267b2a44f7f5749955e020d5b9868e4bd4 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Sun, 8 Sep 2019 21:23:26 -0400 Subject: [PATCH] CI: use ubuntu:18.04 image This image is more standard and supported, unlike the previous CircleCI-specific one. Fixes #937 --- circle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/circle.yml b/circle.yml index a0944f476..fa9978930 100644 --- a/circle.yml +++ b/circle.yml @@ -2,12 +2,12 @@ version: 2 jobs: build: docker: - - image: circleci/build-image:ubuntu-14.04-XXL-upstart-1189-5614f37 - command: /sbin/init + - image: ubuntu:18.04 environment: SOURCE_MAP_SUPPORT: false working_directory: ~/go/src/github.com/gopherjs/gopherjs steps: + - run: apt-get update && apt-get install -y sudo curl git python make g++ - checkout - run: git clone https://github.com/creationix/nvm $HOME/.nvm && cd $HOME/.nvm && git checkout v0.33.9 && echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV && echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV - run: nvm install 10.0.0 && nvm alias default 10.0.0