From 6d71042f6950b7a5182b6f8ec6740a1fcce530bb Mon Sep 17 00:00:00 2001 From: s2 Date: Wed, 12 Dec 2018 17:25:03 +0100 Subject: [PATCH] install wine --- .circleci/config.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 589753b1..42e63acf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,14 +26,19 @@ jobs: # fallback to using the latest cache if no exact match is found - v1-dependencies- - - run: yarn install + - run: npm install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - # run tests! + # run build + - run: sudo dpkg --add-architecture i386 + - run: sudo add-apt-repository -y ppa:ubuntu-wine/ppa + - run: sudo apt-get update + - run: echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections + - run: sudo apt-get install -y wine - run: bash makedist.sh - store_artifacts: - path: /dist + path: ~/repo/dist