build #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: xcode info | |
run: xcodebuild -version | |
- name: carthage | |
run: arch -x86_64 $(which brew) install carthage | |
- name: carthage info | |
run: | | |
carthage version | |
which carthage | |
lipo -archs $(which carthage) | |
- name: xprojup install | |
run: curl -sL https://phimage.github.io/xprojup/install.sh | bash | |
- name: setup rosetta | |
run: /usr/sbin/softwareupdate --install-rosetta --agree-to-license | |
- name: carthage | |
run: ./build.sh |