Skip to content

Commit ff29e26

Browse files
committed
CI update.
1 parent 836a03b commit ff29e26

File tree

6 files changed

+92
-88
lines changed

6 files changed

+92
-88
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ on:
1111
jobs:
1212
env-details-Xcode-13:
1313
name: Environment details Xcode 13
14-
runs-on: macOS-11
14+
runs-on: macOS-12
1515
env:
16-
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer
16+
DEVELOPER_DIR: /Applications/Xcode_13.4.1.app/Contents/Developer
1717
steps:
1818
- name: xcode version
1919
run: xcodebuild -version -sdk
@@ -22,11 +22,11 @@ jobs:
2222
run: |
2323
xcrun simctl delete unavailable
2424
xcrun simctl list
25-
env-details-Xcode-12:
26-
name: Environment details Xcode 12
25+
env-details-Xcode-13:
26+
name: Environment details Xcode 13
2727
runs-on: macOS-11
2828
env:
29-
DEVELOPER_DIR: /Applications/Xcode_12.5.1.app/Contents/Developer
29+
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
3030
steps:
3131
- name: xcode version
3232
run: xcodebuild -version -sdk
@@ -38,9 +38,9 @@ jobs:
3838
3939
Xcode-13:
4040
name: Xcode 13
41-
runs-on: macOS-11
41+
runs-on: macOS-12
4242
env:
43-
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer
43+
DEVELOPER_DIR: /Applications/Xcode_13.4.1.app/Contents/Developer
4444
strategy:
4545
matrix:
4646
destination: ["test_ios15", "test_tvos15", "build_macos_catalyst"]
@@ -50,21 +50,21 @@ jobs:
5050
- name: ruby setup
5151
uses: ruby/setup-ruby@v1
5252
with:
53-
ruby-version: 2.7
53+
ruby-version: 3.1.2
5454
bundler-cache: true
5555
- name: ${{ matrix.destination }}
5656
run: bundle exec fastlane ${{ matrix.destination }}
5757
- name: Generate code coverage
5858
if: matrix.destination != 'build_macos_catalyst'
5959
run: bundle exec fastlane generate_code_coverage
6060
- name: Codecov
61-
uses: codecov/codecov-action@v2
61+
uses: codecov/codecov-action@v3
6262

6363
Xcode-12:
6464
name: Xcode 12
6565
runs-on: macOS-11
6666
env:
67-
DEVELOPER_DIR: /Applications/Xcode_12.5.1.app/Contents/Developer
67+
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
6868
strategy:
6969
matrix:
7070
destination: ["test_ios14", "test_tvos14", "build_macos_catalyst"]
@@ -74,12 +74,12 @@ jobs:
7474
- name: ruby setup
7575
uses: ruby/setup-ruby@v1
7676
with:
77-
ruby-version: 2.7
77+
ruby-version: 3.1.2
7878
bundler-cache: true
7979
- name: ${{ matrix.destination }}
8080
run: bundle exec fastlane ${{ matrix.destination }}
8181
- name: Generate code coverage
8282
if: matrix.destination != 'build_macos_catalyst'
8383
run: bundle exec fastlane generate_code_coverage
8484
- name: Codecov
85-
uses: codecov/codecov-action@v2
85+
uses: codecov/codecov-action@v3

.github/workflows/generate-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ on:
44
- workflow_dispatch
55

66
env:
7-
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer
7+
DEVELOPER_DIR: /Applications/Xcode_13.4.1.app/Contents/Developer
88

99
jobs:
1010
main:
1111
name: Create docs PR
12-
runs-on: macOS-11
12+
runs-on: macOS-12
1313
steps:
1414
- name: git checkout
1515
uses: actions/checkout@v2
1616

1717
- name: ruby setup
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: 2.7
20+
ruby-version: 3.1.2
2121
bundler-cache: true
2222

2323
- name: generate docs

.github/workflows/pod-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ on:
1414
- 'Source/**/*.*'
1515

1616
env:
17-
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer
17+
DEVELOPER_DIR: /Applications/Xcode_13.4.1.app/Contents/Developer
1818

1919
jobs:
2020
main:
2121
name: Pod Lint
22-
runs-on: macOS-11
22+
runs-on: macOS-12
2323
steps:
2424
- name: git checkout
2525
uses: actions/checkout@v2
@@ -32,7 +32,7 @@ jobs:
3232
- name: ruby setup
3333
uses: ruby/setup-ruby@v1
3434
with:
35-
ruby-version: 2.7
35+
ruby-version: 3.1.2
3636
bundler-cache: true
3737

3838
- name: pod lint

0 commit comments

Comments
 (0)