Skip to content

Commit

Permalink
e - Try again with Carthage in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Aug 13, 2023
1 parent 0ecd921 commit 61a8637
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 61a8637

Please sign in to comment.