Skip to content

Commit

Permalink
Merge branch 'fix-build' into 40-force-tag
Browse files Browse the repository at this point in the history
  • Loading branch information
drmingdrmer committed Mar 9, 2023
2 parents 1c14b70 + adb5382 commit 3d17265
Show file tree
Hide file tree
Showing 11 changed files with 739 additions and 131 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build_linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
flags="-C target-feature=+sse4.2"
;;
x86_64-unknown-linux-musl)
flags="-C target-feature=+sse4.2,link-arg=-Wl,--compress-debug-sections=zlib-gabi"
flags="-C target-feature=+sse4.2 -C link-arg=-Wl,--compress-debug-sections=zlib-gabi"
;;
aarch64-unknown-linux-gnu)
flags=""
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
status="${{ (contains(needs.*.result, 'failure') && 'failure') || (contains(needs.*.result, 'cancelled') && 'cancelled') || 'success' }}"
status="${{ (contains(needs.*.result, 'failed') && 'failed') || (contains(needs.*.result, 'cancelled') && 'cancelled') || 'success' }}"
jq -n -f .github/release-report.jq \
--arg title "[Release] ${{ needs.create_release.outputs.version }}" \
--arg content "Build result: ${status}" \
Expand Down
Loading

0 comments on commit 3d17265

Please sign in to comment.