瀏覽代碼

Tests: Update CircleCI with macOS tests

Mike JS. Choi 7 年之前
父節點
當前提交
42a73a9fea
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      .circleci/config.yml

+ 5 - 2
.circleci/config.yml

@@ -19,13 +19,14 @@ jobs:
           paths:
             - .bundle
       - restore_cache:
-          key: libvlc-{{ checksum "compileAndBuildVLCKit.sh" }}
+          key: libvlc-v2-{{ checksum "compileAndBuildVLCKit.sh" }}
       - run:
           name: Build VLCKit
           command: |
             rake build:vlckit:ios
+            rake build:vlckit:mac
       - save_cache:
-          key: libvlc-{{ checksum "compileAndBuildVLCKit.sh" }}
+          key: libvlc-v2-{{ checksum "compileAndBuildVLCKit.sh" }}
           paths:
             - build
             - libvlc
@@ -34,10 +35,12 @@ jobs:
           name: Run Tests
           command: |
             rake test:ios
+            rake test:mac
       - run:
           name: Generate Coverage Reports
           command: |
             rake codecov:ios
+            rake codecov:mac
       - store_artifacts:
           path: Tests/Coverage
           destination: Coverage