Skip to content

Commit

Permalink
fix: make ci parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski committed Sep 8, 2024
1 parent f8732c1 commit ec44b90
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ concurrency:
jobs:
build:
runs-on: macos-14

steps:
- name: Checkout Repository
uses: actions/checkout@v2
Expand All @@ -25,11 +24,19 @@ jobs:
with:
xcode-version: 15

- name: Install XCBeautify
run: brew install xcbeautify
- name: Build
run: set -o pipefail && xcodebuild -scheme MiniSim -destination 'platform=macOS' -skipPackagePluginValidation -skipMacroValidation build COMPILER_INDEX_STORE_ENABLE=NO | xcbeautify --renderer github-actions

- name: Test
run: set -o pipefail && xcodebuild -scheme MiniSim -destination 'platform=macOS' -skipPackagePluginValidation -skipMacroValidation test COMPILER_INDEX_STORE_ENABLE=NO | xcbeautify
test:
runs-on: macos-14
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Build
run: set -o pipefail && xcodebuild -scheme MiniSim -destination 'platform=macOS' -skipPackagePluginValidation -skipMacroValidation build COMPILER_INDEX_STORE_ENABLE=NO | xcbeautify
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15

- name: Test
run: xcodebuild -scheme MiniSim -destination 'platform=macOS' -skipPackagePluginValidation -skipMacroValidation test COMPILER_INDEX_STORE_ENABLE=NO

0 comments on commit ec44b90

Please sign in to comment.