From cf713bef31a9311b8fc947500623ae60079efa6a Mon Sep 17 00:00:00 2001 From: Osspial Date: Thu, 13 Jun 2019 02:34:21 -0400 Subject: [PATCH] Remove CircleCI (#915) None of the platforms that use it are supported right now, so it seems silly to fail builds for other platforms when these ones can't possibly succeed. This should be reverted in stages as the platforms regain support. --- .circleci/config.yml | 56 -------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index b247266cf5..0000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,56 +0,0 @@ -version: 2 - -jobs: - - android-test: - working_directory: ~/winit - docker: - - image: tomaka/cargo-apk - steps: - - run: apt-get -qq update && apt-get install -y git - - checkout - - restore_cache: - key: android-test-cache-{{ checksum "Cargo.toml" }} - - run: cargo apk build --example window - - save_cache: - key: android-test-cache-{{ checksum "Cargo.toml" }} - paths: - - target - - asmjs-test: - working_directory: ~/winit - docker: - - image: tomaka/rustc-emscripten - steps: - - run: apt-get -qq update && apt-get install -y git - - checkout - - restore_cache: - key: asmjs-test-cache-{{ checksum "Cargo.toml" }} - - run: cargo build --example window --target asmjs-unknown-emscripten - - save_cache: - key: asmjs-test-cache-{{ checksum "Cargo.toml" }} - paths: - - target - - wasm-test: - working_directory: ~/winit - docker: - - image: tomaka/rustc-emscripten - steps: - - run: apt-get -qq update && apt-get install -y git - - checkout - - restore_cache: - key: wasm-test-cache-{{ checksum "Cargo.toml" }} - - run: cargo build --example window --target wasm32-unknown-emscripten - - save_cache: - key: wasm-test-cache-{{ checksum "Cargo.toml" }} - paths: - - target - -workflows: - version: 2 - build-test-and-deploy: - jobs: - - android-test - - asmjs-test - - wasm-test