File tree 4 files changed +14
-0
lines changed
4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 68
68
- uses : ./.github/actions/bootstrap
69
69
env :
70
70
INSTALL_ALLURE : true
71
+ INSTALL_YEETD : true
71
72
- name : Cache iOS Simulator Runtime
72
73
uses : actions/cache@v3
73
74
id : runtime-cache
Original file line number Diff line number Diff line change 73
73
name : cache-derived-data
74
74
path : derived_data/Build/
75
75
- uses : ./.github/actions/bootstrap
76
+ env :
77
+ INSTALL_YEETD : true
76
78
- uses : ./.github/actions/python-cache
77
79
- name : Run UI Tests (Debug)
78
80
run : bundle exec fastlane test_ui device:"${{ env.IOS_SIMULATOR_DEVICE }}" skip_build:true record:${{ github.event.inputs.snapshots }}
@@ -136,6 +138,7 @@ jobs:
136
138
- uses : ./.github/actions/bootstrap
137
139
env :
138
140
INSTALL_ALLURE : true
141
+ INSTALL_YEETD : true
139
142
- name : Run UI Tests (Debug)
140
143
run : bundle exec fastlane test_e2e_mock device:"${{ env.IOS_SIMULATOR_DEVICE }}" batch:'${{ matrix.batch }}' test_without_building:true
141
144
env :
Original file line number Diff line number Diff line change 2
2
3
3
export ALLURECTL_VERSION=' 2.15.1'
4
4
export XCRESULTS_VERSION=' 1.16.3'
5
+ export YEETD_VERSION=' 1.0'
Original file line number Diff line number Diff line change @@ -54,3 +54,12 @@ if [[ ${INSTALL_ALLURE-default} == true ]]; then
54
54
curl -sL " ${DOWNLOAD_URL} " -o ./fastlane/xcresults
55
55
chmod +x ./fastlane/xcresults
56
56
fi
57
+
58
+ if [[ ${INSTALL_YEETD-default} == true ]]; then
59
+ PACKAGE=" yeetd-normal.pkg"
60
+ puts " Install yeetd v${YEETD_VERSION} "
61
+ wget " https://github.com/biscuitehh/yeetd/releases/download/${YEETD_VERSION} /${PACKAGE} "
62
+ sudo installer -pkg ${PACKAGE} -target /
63
+ puts " Running yeetd daemon"
64
+ yeetd &
65
+ fi
You can’t perform that action at this time.
0 commit comments