diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4ad031a1d..4f9c7b279 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -97,8 +97,8 @@ jobs: - name: Run IGListSwiftKit podspec lint run: bundle exec pod lib lint IGListSwiftKit.podspec --allow-warnings "--include-podspecs=*.podspec" - Carthage: - name: Verify Carthage build + Carthage-XCFramework: + name: Verify Carthage build XCFramework runs-on: macos-11 env: DEVELOPER_DIR: /Applications/Xcode_12.5.1.app @@ -107,7 +107,19 @@ jobs: uses: actions/checkout@v2 - name: Carthage build framework - run: carthage build --no-skip-current + run: carthage build --no-skip-current --use-xcframeworks + + Carthage-Legacy-Lipo-Binaries: + name: Verify Carthage build lipo binaries + runs-on: macos-11 + env: + DEVELOPER_DIR: /Applications/Xcode_11.7.app + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Carthage build framework + run: carthage build --no-skip-current --use-xcframeworks Build-Examples: name: Build Examples and UI tests.