From 51ec278366f6883351d8a6a2b94bf7d0721a2fc0 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Sun, 28 Jun 2020 23:25:04 +0200 Subject: [PATCH] Install Git Large File Storage (LFS) --- .circleci/config.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a5d44254..c0e1729d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,8 +18,11 @@ workflows: jobs: build: docker: - - image: circleci/node:10 + - image: circleci/node:10-buster steps: + - run: + name: Install Git Large File Storage (LFS) + command: sudo apt-get install git-lfs - checkout - run: name: Version information @@ -53,6 +56,11 @@ jobs: # Available images: https://circleci.com/docs/2.0/configuration-reference/#available-machine-images image: ubuntu-1604:202004-01 steps: + - run: + name: Install Git Large File Storage (LFS) + command: | + wget -O "$HOME/git-lfs.deb" https://packagecloud.io/github/git-lfs/packages/ubuntu/xenial/git-lfs_2.11.0_amd64.deb/download.deb + sudo dpkg -i "$HOME/git-lfs.deb" - checkout - run: # start early for less wait time below name: Start wasmd @@ -129,6 +137,11 @@ jobs: # Available images: https://circleci.com/docs/2.0/configuration-reference/#available-machine-images image: ubuntu-1604:202004-01 steps: + - run: + name: Install Git Large File Storage (LFS) + command: | + wget -O "$HOME/git-lfs.deb" https://packagecloud.io/github/git-lfs/packages/ubuntu/xenial/git-lfs_2.11.0_amd64.deb/download.deb + sudo dpkg -i "$HOME/git-lfs.deb" - checkout - run: # start early for less wait time below name: Start wasmd @@ -199,6 +212,11 @@ jobs: # Available images: https://circleci.com/docs/2.0/configuration-reference/#available-machine-images image: ubuntu-1604:202004-01 steps: + - run: + name: Install Git Large File Storage (LFS) + command: | + wget -O "$HOME/git-lfs.deb" https://packagecloud.io/github/git-lfs/packages/ubuntu/xenial/git-lfs_2.11.0_amd64.deb/download.deb + sudo dpkg -i "$HOME/git-lfs.deb" - checkout - run: # start early for less wait time below name: Start wasmd @@ -263,7 +281,7 @@ jobs: command: ./scripts/socketserver/stop.sh lint: docker: - - image: circleci/node:10 + - image: circleci/node:10-buster steps: - checkout - run: