Skip to content

Commit 88aa14a

Browse files
committed
cleanup
1 parent 73de4e0 commit 88aa14a

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.semaphore/semaphore.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ blocks:
9595

9696
# Upload the IPA file as a job artifact.
9797
# See https://docs.semaphoreci.com/article/155-artifacts
98-
#- artifact push job build/TallestTowers.ipa
98+
- artifact push job build/TallestTowers.ipa
9999
- name: Take screenshots
100100
task:
101101
env_vars:

fastlane/Fastfile

+2-8
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,8 @@ end
1919

2020
platform :ios do
2121
lane :build do
22-
build_app(scheme: 'TallestTowers',
23-
skip_package_ipa: true,
24-
skip_archive: true,
25-
skip_codesigning: true,
26-
xcargs: "ONLY_ACTIVE_ARCH=YES", # since for this demo we skip_codesigning, the build will be done for a simulator, and since XCode 12, this means arm64, thus build failing. Semaphore is running on x86 chips.
27-
silent: true,
28-
clean: true
29-
)
22+
match(type: 'adhoc')
23+
gym(scheme: 'TallestTowers', clean: true)
3024
end
3125

3226
lane :test do

0 commit comments

Comments
 (0)