From 61a8637540490bd8f2abc6312f7f4abebaec8e74 Mon Sep 17 00:00:00 2001 From: Jon Reid Date: Sun, 13 Aug 2023 10:31:45 -0700 Subject: [PATCH] e - Try again with Carthage in CI --- .github/workflows/build.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85e03eaa..7a689355 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -65,23 +65,23 @@ jobs: - name: Build run: cd Source; swift build -v -# buildCarthage: -# needs: [ build, test ] -# name: Build Carthage -# runs-on: macos-13 -# steps: -# - uses: actions/checkout@v3 -# - name: Show current version of Xcode -# run: xcodebuild -version -# - name: Show current version of Carthage -# run: carthage version -# - name: Build -# run: carthage build --configuration Release --no-skip-current --use-xcframeworks + buildCarthage: + needs: [ build, test ] + name: Build Carthage + runs-on: macos-13 + steps: + - uses: actions/checkout@v3 + - name: Show current version of Xcode + run: xcodebuild -version + - name: Show current version of Carthage + run: carthage version + - name: Build + run: carthage build --configuration Release --no-skip-current --use-xcframeworks podspec: needs: [ build, test ] name: Pod Spec Lint - runs-on: macos-latest + runs-on: macos-13 steps: - name: Check out project uses: actions/checkout@v3 @@ -91,7 +91,7 @@ jobs: run: pod spec lint --quick auto-merge: - needs: [ buildSwiftPackage, podspec ] + needs: [ buildSwiftPackage, buildCarthage, podspec ] runs-on: ubuntu-latest steps: - name: Check out repo