From 474a775ce737c5bb921453b8a7b05e902dfe20f0 Mon Sep 17 00:00:00 2001 From: Tatsuyuki Ishi Date: Thu, 18 Jul 2019 10:27:31 +0900 Subject: [PATCH] Disable Android CI target The Android build has been broken for a while; we don't have cfg-gated code for Android anyway for now. --- .circleci/config.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4d4f493..0730662 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,22 +1,6 @@ version: 2 jobs: - - android-test: - working_directory: ~/cpal - 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 beep - - save_cache: - key: android-test-cache-{{ checksum "Cargo.toml" }} - paths: - - target - asmjs-test: working_directory: ~/cpal docker: @@ -51,6 +35,5 @@ workflows: version: 2 build-test-and-deploy: jobs: - - android-test - asmjs-test - wasm-test