Skip to content

Commit 874050c

Browse files
committed
build now
1 parent ec2e9a4 commit 874050c

File tree

1 file changed

+27
-24
lines changed

1 file changed

+27
-24
lines changed

.github/workflows/common_quickstart.yml

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -87,28 +87,31 @@ jobs:
8787
# ${{ inputs.plist_src_path }} \
8888
# ${{ inputs.plist_dst_path }} \
8989
# "$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 }}
101104
# 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

Comments
 (0)