File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
build :
10
10
name : Build and test
11
- runs-on : macos-12
11
+ runs-on : [self-hosted, macOS, ARM64]
12
12
env :
13
13
DERIVED_DATA_PATH : ' DerivedData'
14
- if : " !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') "
14
+ DEVICE : ' iPhone 15 Pro '
15
15
steps :
16
16
- uses : actions/checkout@v3
17
17
- uses : actions/cache@v3
25
25
./Scripts/process.sh
26
26
exit $?
27
27
- name : Build and test
28
- run : set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme 'CryptomatorCryptoLib' -destination 'platform=macOS' -derivedDataPath $DERIVED_DATA_PATH -enableCodeCoverage YES clean test | xcpretty
28
+ run : set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme 'CryptomatorCryptoLib' -destination 'platform=macOS' -derivedDataPath $DERIVED_DATA_PATH -enableCodeCoverage YES clean test | xcbeautify
29
29
- name : Upload code coverage report
30
30
run : |
31
31
gem install slather
37
37
38
38
release :
39
39
name : Deploy and draft a release
40
- runs-on : macos-12
40
+ runs-on : macos-latest
41
41
needs : build
42
42
if : startsWith(github.ref, 'refs/tags/')
43
43
steps :
You can’t perform that action at this time.
0 commit comments