Skip to content

Update dependency apple/swift-argument-parser to from: "1.5.0" #49

Update dependency apple/swift-argument-parser to from: "1.5.0"

Update dependency apple/swift-argument-parser to from: "1.5.0" #49

Workflow file for this run

name: macOS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
macos-build-release:
runs-on: macOS-latest
strategy:
matrix:
xcode: ["14.2", "13.4.1"]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Build Release
run: make buildRelease
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
- name: Build SimctlCLI Release
run: make buildSimctlCLI
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
- name: Upload build artifacts on failure
if: failure()
uses: actions/[email protected]
with:
name: build-artifacts-${{ matrix.xcode }}-${{ github.run_id }}
path: |
*.lcov
.build/*.yaml
.build/**/*.a
.build/**/*.so
.build/**/*.dylib
.build/**/*.dSYM
.build/**/*.json