Skip to content

Commit

Permalink
Fix cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
theboringhumane committed Sep 9, 2024
1 parent c74038b commit 7f6d6c6
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,15 @@ concurrency:
cancel-in-progress: true

jobs:
build_and_test:
name: ${{ matrix.command }} on  ${{ matrix.platform }} (xcode ${{ matrix.xcode }}, ${{ matrix.macos }})
runs-on: ${{ matrix.macos }}
build:
name: Build and Test TheBoringWorker
strategy:
fail-fast: false
matrix:
macos: ['macos-14']
xcode: ['15.4']
scheme: ['TheBoringWorker']
command: ['build']
platform: ['macOS']
swift: ['5.10']
platform:
- macOS
xcode:
- ^15
runs-on: macos-14.6
steps:
- name: Switch xcode to ${{ matrix.xcode }}
uses: maxim-lobanov/[email protected]
Expand All @@ -44,11 +41,11 @@ jobs:
run: xcodebuild -list
- name: Show eligible build destinations for ${{ matrix.scheme }}
run: xcodebuild -showdestinations -scheme ${{ matrix.scheme }}
- uses: mxcl/xcodebuild@v1.9.2
- uses: mxcl/xcodebuild@v3
with:
platform: ${{ matrix.platform }}
scheme: ${{ matrix.scheme }}
action: ${{ matrix.command }}
code-coverage: true
action: build
verbosity: xcpretty
upload-logs: always
upload-logs: always
configuration: release

0 comments on commit 7f6d6c6

Please sign in to comment.