Skip to content

Commit d3c86f5

Browse files
committed
Merge branch 'main' of https://github.com/datafuselabs/databend into fixx3
2 parents 45f3ca1 + f7fb610 commit d3c86f5

File tree

193 files changed

+3496
-1156
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+3496
-1156
lines changed

.github/actions/build_linux/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
flags="-C target-feature=+sse4.2"
3535
;;
3636
x86_64-unknown-linux-musl)
37-
flags="-C target-feature=+sse4.2,link-arg=-Wl,--compress-debug-sections=zlib-gabi"
37+
flags="-C target-feature=+sse4.2 -C link-arg=-Wl,--compress-debug-sections=zlib-gabi"
3838
;;
3939
aarch64-unknown-linux-gnu)
4040
flags=""

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ jobs:
538538
steps:
539539
- uses: actions/checkout@v3
540540
- run: |
541-
status="${{ (contains(needs.*.result, 'failure') && 'failure') || (contains(needs.*.result, 'cancelled') && 'cancelled') || 'success' }}"
541+
status="${{ (contains(needs.*.result, 'failed') && 'failed') || (contains(needs.*.result, 'cancelled') && 'cancelled') || 'success' }}"
542542
jq -n -f .github/release-report.jq \
543543
--arg title "[Release] ${{ needs.create_release.outputs.version }}" \
544544
--arg content "Build result: ${status}" \

0 commit comments

Comments
 (0)