Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DO-000] update ci runners #1074

Merged
merged 19 commits into from
Apr 9, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
contents: read
name: "Test Flight Deploy"
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' && !(contains(github.event.head_commit.message, '[skip cd]') || contains(github.event.head_commit.message, '[cd skip]')) }}
runs-on: macos-13-xlarge
runs-on: macos-14-xlarge

steps:
- uses: RDXWorks-actions/checkout@main
Expand Down Expand Up @@ -71,14 +71,14 @@ jobs:
with:
token: ${{ env.WALLET_RADIX_BOT_PAT }}

- uses: RDXWorks-actions/setup-ruby@master
- uses: RDXWorks-actions/setup-ruby@master-upgrade-to-v1-171-0
with:
ruby-version: 3.1.2
bundler-cache: true

- uses: RDXWorks-actions/setup-xcode@master
with:
xcode-version: "15.0.1"
xcode-version: "15.3.0"

- uses: RDXWorks-actions/ssh-agent@master
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
( github.event.pull_request.draft == false && github.event.action == 'synchronize' ) ||
( github.event.action == 'ready_for_review' ) ||
( github.event_name == 'push' && github.ref == 'refs/heads/main' )
runs-on: macos-13-xlarge
runs-on: macos-14-xlarge

steps:
- uses: RDXWorks-actions/checkout@main
Expand All @@ -134,7 +134,7 @@ jobs:
contents: read
checks: write
name: "Unit test"
runs-on: macos-13-xlarge
runs-on: macos-14-xlarge
timeout-minutes: 20

needs:
Expand Down Expand Up @@ -174,10 +174,10 @@ jobs:

- uses: RDXWorks-actions/setup-xcode@master
with:
xcode-version: "15.0.1"
xcode-version: "15.3.0"

- name: "Set up ruby"
uses: RDXWorks-actions/setup-ruby@master
uses: RDXWorks-actions/setup-ruby@master-upgrade-to-v1-171-0
with:
ruby-version: 3.1.2
bundler-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .xcode-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15.0.1
15.3.0
2 changes: 1 addition & 1 deletion fastlane/.env.ios
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SCAN_DEVICE="iPhone 15 Pro Max (17.0.1)"
SCAN_DEVICE="iPhone 15 Pro Max (17.4)"
GYM_DESTINATION="generic/platform=iOS"
Loading