File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
.github/actions/artifact_upload Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 41
41
if : env.RUNNER_PROVIDER == 'aws'
42
42
shell : bash
43
43
run : |
44
+ echo "### artifacts 🚀" >> $GITHUB_STEP_SUMMARY
44
45
aws s3 sync ./target/${{ inputs.target }}/${{ env.BUILD_PROFILE }}/ \
45
46
s3://databend-ci/${{ env.BUILD_PROFILE }}/${{ inputs.sha }}/${{ inputs.target }}/${{ inputs.category }}/ \
46
47
--exclude "*" --include "databend-*" --no-progress
48
+ artifacts="meta,query,query.debug"
49
+ for artifact in ${artifacts//,/ }; do
50
+ if [[ -f ./target/${{ inputs.target }}/${{ env.BUILD_PROFILE }}/databend-${artifact} ]]; then
51
+ url=$(aws s3 presign s3://databend-ci/${{ env.BUILD_PROFILE }}/${{ inputs.sha }}/${{ inputs.target }}/${{ inputs.category }}/databend-${artifact} --expires-in 21600)
52
+ echo "- [${artifact}](${url})" >> $GITHUB_STEP_SUMMARY
53
+ fi
54
+ done
47
55
48
56
- name : Upload artifact to gcs
49
57
if : env.RUNNER_PROVIDER == 'gcp'
Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ result_large_err = "allow"
586
586
debug = 1
587
587
lto = " thin"
588
588
overflow-checks = false
589
- opt-level = " s" # # defaults to be 3
589
+ opt-level = " s" # defaults to be 3
590
590
incremental = true
591
591
592
592
[profile .ci ]
You can’t perform that action at this time.
0 commit comments