Skip to content

Commit

Permalink
Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeShirley committed Sep 9, 2023
1 parent bb6c353 commit 943f36f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: CI

env:
MACOS_AGENT: macos-13
XCODE_VERSION: 14.3.1
XCODEBUILD_DESTINATION: platform=iOS Simulator,name=iPhone 14,OS=16.4

Expand All @@ -19,15 +18,15 @@ on:
jobs:
Build:
permissions: write-all
runs-on: "$MACOS_AGENT"
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: maxim-lobanov/setup-xcode@v1
name: Set Xcode Version
with:
xcode-version: "$XCODE_VERSION"
xcode-version: "${{ env.XCODE_VERSION }}"

- name: "Test SDK versions"
run: |
Expand All @@ -38,7 +37,7 @@ jobs:
with:
project: Mlem.xcodeproj
scheme: Mlem
destination: "$XCODEBUILD_DESTINATION"
destination: "${{ env.XCODEBUILD_DESTINATION }}"
action: build
result-bundle-path: build_results.xcresult

Expand All @@ -54,15 +53,15 @@ jobs:

Test:
permissions: write-all
runs-on: "$MACOS_AGENT"
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: maxim-lobanov/setup-xcode@v1
name: Set Xcode Version
with:
xcode-version: "$XCODE_VERSION"
xcode-version: "${{ env.XCODE_VERSION }}"

- name: "Test SDK versions"
run: |
Expand All @@ -73,7 +72,7 @@ jobs:
with:
project: Mlem.xcodeproj
scheme: Mlem
destination: "$XCODEBUILD_DESTINATION"
destination: "${{ env.XCODEBUILD_DESTINATION }}"
action: test
result-bundle-path: test_results.xcresult

Expand Down

0 comments on commit 943f36f

Please sign in to comment.