Use Conformance repo proto files #337
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: {} # support manual runs | |
permissions: | |
contents: read | |
jobs: | |
build-connect-library: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode version | |
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#xcode | |
run: sudo xcode-select --switch /Applications/Xcode_14.1.app | |
- name: Build Connect library | |
run: make buildpackage | |
build-eliza-cocoapods-example: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode version | |
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#xcode | |
run: sudo xcode-select --switch /Applications/Xcode_14.1.app | |
- name: Build Eliza CocoaPods example | |
run: | | |
cd Examples/ElizaCocoaPodsApp | |
pod install | |
xcodebuild -workspace ElizaCocoaPodsApp.xcworkspace -scheme ElizaCocoaPodsApp build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | |
build-eliza-swiftpm-example: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode version | |
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#xcode | |
run: sudo xcode-select --switch /Applications/Xcode_14.1.app | |
- name: Build Eliza Swift PM example | |
run: | | |
cd Examples/ElizaSwiftPackageApp | |
xcodebuild -scheme ElizaSwiftPackageApp build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | |
build-plugin-and-generate: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: bufbuild/[email protected] | |
with: | |
github_token: ${{ github.token }} | |
- name: Build plugins | |
run: make buildplugins | |
- name: Generate outputs | |
run: make generate | |
- name: Ensure no generated diff | |
run: | | |
git update-index --refresh --add --remove | |
git diff-index --quiet HEAD -- | |
run-connect-tests: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker-practice/actions-setup-docker@master | |
- name: Select Xcode version | |
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#xcode | |
run: sudo xcode-select --switch /Applications/Xcode_14.1.app | |
- name: Run tests | |
run: make test | |
run-swiftlint: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/realm/swiftlint:0.50.3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run SwiftLint | |
run: swiftlint lint --strict | |
validate-license-headers: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate license headers | |
run: | | |
make licenseheaders | |
git update-index --refresh | |
git diff-index --quiet HEAD -- |