Skip to content

Commit cee0cf3

Browse files
committed
fix: catalyst workflow
1 parent 03ce974 commit cee0cf3

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/common_catalyst.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,23 @@ jobs:
3737
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
3838
- uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
3939
with:
40-
timeout_minutes: 15
40+
timeout_minutes: 20
4141
max_attempts: 3
4242
retry_wait_seconds: 120
4343
command: |
4444
scripts/test_catalyst.sh \
4545
${{ inputs.product }} \
4646
${{ inputs.buildonly == true && 'build' || 'test' }} \
4747
${{ inputs.target }}
48+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
49+
if: ${{ failure() }}
50+
with:
51+
name: xcodebuild-logs-${{ inputs.target }}-maccatalyst
52+
path: xcodebuild-*.log
53+
if-no-files-found: error
54+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
55+
if: ${{ failure() }}
56+
with:
57+
name: xcresults-${{ inputs.target }}-maccatalyst
58+
path: xcresults/*
59+
if-no-files-found: error

0 commit comments

Comments
 (0)