Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/buildIOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ on:
jobs:
build:
name: Build iOS HybridApp
runs-on: macos-15-xlarge
runs-on: blacksmith-12vcpu-macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_26.2.app/Contents/Developer
PULL_REQUEST_NUMBER: ${{ inputs.pull-request-number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/createNewVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ on:

jobs:
createNewVersion:
runs-on: macos-latest
runs-on: blacksmith-6vcpu-macos-latest
outputs:
NEW_VERSION: ${{ steps.bumpVersion.outputs.NEW_VERSION }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ jobs:
iosUploadTestflight:
name: Upload iOS to TestFlight
needs: [prep, iosBuild]
runs-on: macos-15-xlarge
runs-on: blacksmith-12vcpu-macos-latest
if: ${{ fromJSON(needs.prep.outputs.SHOULD_BUILD_NATIVE) }}
env:
DEVELOPER_DIR: /Applications/Xcode_26.2.app/Contents/Developer
Expand Down Expand Up @@ -395,7 +395,7 @@ jobs:
iosSubmit:
name: Submit iOS for production rollout
needs: [prep, iosBuild, iosUploadTestflight]
runs-on: macos-15-xlarge
runs-on: blacksmith-12vcpu-macos-latest
if: ${{ always() && !cancelled() && github.ref == 'refs/heads/production' && needs.iosBuild.result != 'failure' && needs.iosUploadTestflight.result != 'failure' }}
env:
DEVELOPER_DIR: /Applications/Xcode_26.2.app/Contents/Developer
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remote-build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
build:
runs-on: ${{ github.repository_owner == 'Expensify' && 'macos-15-xlarge' || 'macos-15' }}
runs-on: ${{ github.repository_owner == 'Expensify' && 'blacksmith-12vcpu-macos-latest' || 'macos-latest' }}
env:
DEVELOPER_DIR: /Applications/Xcode_26.2.app/Contents/Developer
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/syncVersions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
syncVersions:
runs-on: macos-latest
runs-on: blacksmith-6vcpu-macos-latest
steps:
- name: Check out
# v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verifyParserFiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
verify:
if: github.actor != 'OSBotify' && github.actor != 'imgbot[bot]'
runs-on: macos-latest
runs-on: blacksmith-6vcpu-macos-latest
steps:
- name: Checkout
# v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verifyPodfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
verify:
if: github.actor != 'OSBotify' && github.actor != 'imgbot[bot]'
runs-on: macos-latest
runs-on: blacksmith-6vcpu-macos-latest
steps:
- name: Checkout
# v6
Expand Down
Loading