From 90a076274ddd90d8821d82498e6ee24629ccdf9a Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Sun, 17 Feb 2019 19:46:09 +0000 Subject: [PATCH] Don't use circleci, it's a bit of a pain --- .circleci/config.yml | 45 ---------------------------------- .circleci/install_vim.macos.sh | 6 ----- 2 files changed, 51 deletions(-) delete mode 100644 .circleci/config.yml delete mode 100644 .circleci/install_vim.macos.sh diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 6659ada..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,45 +0,0 @@ -# Python CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-python/ for more details -# -version: 2 -aliases: - cache: &cache - key: v1-vimspector-{{ .Environment.CIRCLE_JOB }} - update-submodules: &update-submodules - run: - name: Update submodules - command: git submodule update --init --recursive - install-vim: &install-vim - install-gadgets: &install-gadgets - run: - name: Install gadgets - command: 'python3 ./install_gadget.py' - run-tests: &run-tests - run: - name: Run tests - command: './run_tests' - # Increase the version key to clear the cache. - save-cache: &save-cache - save_cache: - <<: *cache - paths: - - 'gadgets/download/*/*/*/*.vsix' - - 'gadgets/download/*/*/*/*.gz' - restore-cache: &restore-cache - restore_cache: - <<: *cache -jobs: - build-macos: - macos: - xcode: "9.0" - steps: - - checkout - - *update-submodules - - *restore-cache - - run: - name: Install vim - command: .circleci/install_vim.macos.sh - - *install-gadgets - - *run-tests - - *save-cache diff --git a/.circleci/install_vim.macos.sh b/.circleci/install_vim.macos.sh deleted file mode 100644 index 84d6779..0000000 --- a/.circleci/install_vim.macos.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -set -e - -brea update || brew update -brew install vim --with-override-system-vim