Skip to content

Commit b863805

Browse files
committed
Merge branch 'main' into filesynchronizedgroups
2 parents 550012d + 90db951 commit b863805

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/checks.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Checks
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
77
branches: '*'
88

@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
unit-tests:
14-
runs-on: macos-12
14+
runs-on: self-hosted
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v3
@@ -26,7 +26,7 @@ jobs:
2626
run: swift test -v
2727

2828
test-iOS-ResourceApp:
29-
runs-on: macos-12
29+
runs-on: self-hosted
3030
needs: build-rswift
3131
steps:
3232
- name: Checkout
@@ -35,6 +35,7 @@ jobs:
3535
uses: actions/download-artifact@v4.1.7
3636
with:
3737
name: rswift-dev
38+
path: rswift-dev
3839
- name: Put build into place
3940
run: |
4041
mkdir -p .build/release
@@ -56,7 +57,7 @@ jobs:
5657
run: xcodebuild -workspace Examples/ResourceApp/ResourceApp.xcworkspace -scheme ResourceApp -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.0' test
5758

5859
test-iOS-StaticFrameworks:
59-
runs-on: macos-12
60+
runs-on: self-hosted
6061
needs: build-rswift
6162
steps:
6263
- name: Checkout
@@ -65,6 +66,7 @@ jobs:
6566
uses: actions/download-artifact@v4.1.7
6667
with:
6768
name: rswift-dev
69+
path: rswift-dev
6870
- name: Put build into place
6971
run: |
7072
mkdir -p .build/release
@@ -75,7 +77,7 @@ jobs:
7577
run: xcodebuild -project Examples/RswiftAppWithStaticFrameworks/RswiftAppWithStaticFrameworks.xcodeproj -scheme App -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.0' test
7678

7779
test-iOS-LocalizedStringApp:
78-
runs-on: macos-12
80+
runs-on: self-hosted
7981
needs: build-rswift
8082
steps:
8183
- name: Checkout
@@ -84,6 +86,7 @@ jobs:
8486
uses: actions/download-artifact@v4.1.7
8587
with:
8688
name: rswift-dev
89+
path: rswift-dev
8790
- name: Put build into place
8891
run: |
8992
mkdir -p .build/release
@@ -93,7 +96,7 @@ jobs:
9396
run: xcodebuild -project Examples/LocalizedStringApp/LocalizedStringApp.xcodeproj -scheme LocalizedStringApp -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.0' test
9497

9598
test-tvOS:
96-
runs-on: macos-12
99+
runs-on: self-hosted
97100
needs: build-rswift
98101
steps:
99102
- name: Checkout
@@ -102,6 +105,7 @@ jobs:
102105
uses: actions/download-artifact@v4.1.7
103106
with:
104107
name: rswift-dev
108+
path: rswift-dev
105109
- name: Put build into place
106110
run: |
107111
mkdir -p .build/release
@@ -112,7 +116,7 @@ jobs:
112116
run: xcodebuild -project Examples/RtvApp/RtvApp.xcodeproj -scheme ResourceApp-tvOS -destination 'platform=tvOS Simulator,name=Apple TV,OS=16.0' test
113117

114118
build-rswift:
115-
runs-on: macos-12
119+
runs-on: self-hosted
116120
steps:
117121
- name: Checkout
118122
uses: actions/checkout@v3

0 commit comments

Comments
 (0)