From b9278cd25af8914c401d49d1363d93bb4adca9d6 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Thu, 5 Jul 2018 08:54:02 -0400 Subject: [PATCH] Remove the magic-folder "machine" configuration Ubuntu 14.04 is so ooooold. It doesn't like the way we're installing Python packages now. --- .circleci/config.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 698461041..a41e0a7e9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,7 +15,6 @@ workflows: - "fedora-28" - "slackware-14.2" - - "magic-folder-ubuntu-14.04" - "deprecations" - "c-locale" @@ -286,45 +285,3 @@ jobs: - store_artifacts: *STORE_TEST_LOG - store_artifacts: *STORE_OTHER_ARTIFACTS - run: *SUBMIT_COVERAGE - - - magic-folder-ubuntu-14.04: - machine: - enabled: true - image: "circleci/classic:201711-01" - - environment: - <<: *UTF_8_ENVIRONMENT - EXTRA_PACKAGES: "python-virtualenv" - TAHOE_LAFS_TOX_ARGS: "-- allmydata.test.test_magic_folder" - - # Unfortunately, duplicate all the steps here but run with `sudo`. - steps: - - run: - node: "Install Git" - command: | - sudo apt-get --quiet update - sudo apt-get --quiet --yes install git - - - "checkout" - - - run: - <<: *BOOTSTRAP_TEST_ENVIRONMENT - command: | - sudo ~/project/.circleci/bootstrap-test-environment.sh ~/project "${EXTRA_PACKAGES}" - - - run: - <<: *SETUP_VIRTUALENV - command: | - env - sudo /tmp/project/.circleci/setup-virtualenv.sh "${TAHOE_LAFS_TOX_ENVIRONMENT}" "${TAHOE_LAFS_TOX_ARGS}" - - - run: - <<: *RUN_TESTS - command: | - env - sudo /tmp/project/.circleci/run-tests.sh "${TAHOE_LAFS_TOX_ENVIRONMENT}" "${TAHOE_LAFS_TOX_ARGS}" - - - store_artifacts: *STORE_TEST_LOG - - store_artifacts: *STORE_OTHER_ARTIFACTS - - run: *SUBMIT_COVERAGE