@@ -87,28 +87,31 @@ jobs:
87
87
# ${{ inputs.plist_src_path }} \
88
88
# ${{ inputs.plist_dst_path }} \
89
89
# "$plist_secret"
90
- # - name: Build ${{ inputs.product }} Quickstart (${{ inputs.quickstart_type }} / ${{ inputs.is_legacy && 'Legacy' || 'Non-Legacy' }})
91
- # uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
92
- # with:
93
- # timeout_minutes: 15
94
- # max_attempts: 3
95
- # retry_wait_seconds: 120
96
- # command: |
97
- # scripts/test_quickstart.sh \
98
- # ${{ inputs.product }} \
99
- # ${{ inputs.run_tests }} \
100
- # ${{ inputs.quickstart_type }}
90
+ - name : Build ${{ inputs.product }} Quickstart (${{ inputs.quickstart_type }} / ${{ inputs.is_legacy && 'Legacy' || 'Non-Legacy' }})
91
+ uses : nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
92
+ with :
93
+ timeout_minutes : 15
94
+ max_attempts : 3
95
+ retry_wait_seconds : 120
96
+ command : |
97
+ scripts/test_quickstart.sh ${{ inputs.product }} false ${{ inputs.quickstart_type }}
98
+ # command: |
99
+ # scripts/test_quickstart.sh ${{ inputs.product }} false ${{ inputs.quickstart_type }}
100
+ # scripts/test_quickstart.sh \
101
+ # ${{ inputs.product }} \
102
+ # ${{ inputs.run_tests }} \
103
+ # ${{ inputs.quickstart_type }}
101
104
# Failure sequence to upload artifact.
102
- # - id: lowercase_product
103
- # if: ${{ failure() }}
104
- # run: |
105
- # lowercase_product=$(echo "${{ inputs.product }}" | tr '[:upper:]' '[:lower:]')
106
- # echo "lowercase_product=$lowercase_product" >> $GITHUB_OUTPUT
107
- # - name: Remove data before upload.
108
- # if: ${{ failure() }}
109
- # run: scripts/remove_data.sh ${{ steps.lowercase_product.outputs.lowercase_product }}
110
- # - uses: actions/upload-artifact@v4
111
- # if: ${{ failure() }}
112
- # with:
113
- # name: quickstart_artifacts_${{ steps.lowercase_product.outputs.lowercase_product }}
114
- # path: quickstart-ios/
105
+ - id : lowercase_product
106
+ if : ${{ failure() }}
107
+ run : |
108
+ lowercase_product=$(echo "${{ inputs.product }}" | tr '[:upper:]' '[:lower:]')
109
+ echo "lowercase_product=$lowercase_product" >> $GITHUB_OUTPUT
110
+ - name : Remove data before upload.
111
+ if : ${{ failure() }}
112
+ run : scripts/remove_data.sh ${{ steps.lowercase_product.outputs.lowercase_product }}
113
+ - uses : actions/upload-artifact@v4
114
+ if : ${{ failure() }}
115
+ with :
116
+ name : quickstart_artifacts_${{ steps.lowercase_product.outputs.lowercase_product }}
117
+ path : quickstart-ios/
0 commit comments