-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix error context display & update release workflow (#190)
* fix error context display revert #189. Error context is printed only for `{:?}`. For backtrace, according to anyhow's doc, > If using the nightly channel, or stable with features = ["backtrace"], a backtrace is captured and printed with the error if the underlying error type does not already provide its own. In order to see backtraces, they must be enabled through the environment variables described in std::backtrace So we can either: ship pre-built binary or unset `RUST_BACKTRACE` to hide backtrace. Signed-off-by: xxchan <[email protected]> * update release workflow Signed-off-by: xxchan <[email protected]> * test release ci Signed-off-by: xxchan <[email protected]> * add changelog Signed-off-by: xxchan <[email protected]> * add more targets Signed-off-by: xxchan <[email protected]> * more cargo-binstall friendly Signed-off-by: xxchan <[email protected]> * remove test config Signed-off-by: xxchan <[email protected]> --------- Signed-off-by: xxchan <[email protected]>
- Loading branch information
Showing
6 changed files
with
155 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import argparse | ||
import re | ||
import pathlib | ||
import sys | ||
|
||
|
||
_STDIO = pathlib.Path("-") | ||
|
||
|
||
def main(): | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument("-i", "--input", type=pathlib.Path, default="CHANGELOG.md") | ||
parser.add_argument("--tag", required=True) | ||
parser.add_argument("-o", "--output", type=pathlib.Path, required=True) | ||
args = parser.parse_args() | ||
|
||
if args.input == _STDIO: | ||
lines = sys.stdin.readlines() | ||
else: | ||
with args.input.open() as fh: | ||
lines = fh.readlines() | ||
version = args.tag.lstrip("v") | ||
|
||
note_lines = [] | ||
for line in lines: | ||
if line.startswith("## ") and version in line: | ||
note_lines.append(line) | ||
elif note_lines and line.startswith("## "): | ||
break | ||
elif note_lines: | ||
note_lines.append(line) | ||
|
||
notes = "".join(note_lines).strip() | ||
if args.output == _STDIO: | ||
print(notes) | ||
else: | ||
args.output.write_text(notes) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,110 @@ | ||
# Reference: https://github.com/crate-ci/typos/blob/f8d11b3a696122fde2fee567dc70c0864683b481/.github/workflows/post-release.yml | ||
|
||
name: post-release | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
- "v*.*.*" | ||
|
||
name: Release | ||
env: | ||
BIN_NAME: sqllogictest | ||
CRATE_NAME: sqllogictest-bin | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-22.04 | ||
create-release: | ||
name: create-release | ||
runs-on: ubuntu-latest | ||
outputs: | ||
upload_url: ${{ steps.release.outputs.upload_url }} | ||
release_version: ${{ env.RELEASE_VERSION }} | ||
steps: | ||
- name: Get the release version from the tag | ||
shell: bash | ||
if: env.RELEASE_VERSION == '' | ||
run: | | ||
# See: https://github.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/32167/highlight/true#M1027 | ||
echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
echo "version is: ${{ env.RELEASE_VERSION }}" | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
- name: Generate Release Notes | ||
run: | | ||
./.github/workflows/release-notes.py --tag ${{ env.RELEASE_VERSION }} --output notes-${{ env.RELEASE_VERSION }}.md | ||
cat notes-${{ env.RELEASE_VERSION }}.md | ||
- name: Create GitHub release | ||
id: release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ env.RELEASE_VERSION }} | ||
release_name: ${{ env.RELEASE_VERSION }} | ||
body_path: notes-${{ env.RELEASE_VERSION }}.md | ||
build-release: | ||
name: build-release | ||
needs: create-release | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-20.04 | ||
rust: stable | ||
target: x86_64-unknown-linux-musl | ||
- os: macos-latest | ||
rust: stable | ||
target: x86_64-apple-darwin | ||
- os: macos-latest | ||
rust: stable | ||
target: aarch64-apple-darwin | ||
- os: windows-2019 | ||
rust: stable | ||
target: x86_64-pc-windows-msvc | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
name: Checkout 🛎️ | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
- uses: actions-rs/cargo@v1 | ||
name: Compile all targets 🚀 | ||
with: | ||
command: build | ||
args: --workspace --release | ||
- name: create tar | ||
run: tar -cvzf sqllogictest-linux-amd64.tar.gz -C target/release sqllogictest | ||
- name: release | ||
uses: anton-yurchenko/git-release@main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
RELEASE_NAME_PREFIX: "Release: " | ||
with: | ||
args: sqllogictest-linux-amd64.tar.gz | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
- name: Install packages (Ubuntu) | ||
if: matrix.os == 'ubuntu-20.04' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y --no-install-recommends xz-utils liblz4-tool musl-tools | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
profile: minimal | ||
override: true | ||
target: ${{ matrix.target }} | ||
- name: Build release binary | ||
run: cargo build -p sqllogictest-bin --target ${{ matrix.target }} --verbose --release | ||
- name: Build archive | ||
shell: bash | ||
run: | | ||
outdir="./target/${{ env.TARGET_DIR }}/release" | ||
staging="${{ env.CRATE_NAME }}-${{ needs.create-release.outputs.release_version }}-${{ matrix.target }}" | ||
mkdir -p "$staging"/{complete,doc} | ||
cp {README.md,LICENSE-*} "$staging/" | ||
cp {CHANGELOG.md,docs/*} "$staging/doc/" | ||
if [ "${{ matrix.os }}" = "windows-2019" ]; then | ||
cp "target/${{ matrix.target }}/release/${{ env.BIN_NAME }}.exe" "$staging/" | ||
cd "$staging" | ||
7z a "../$staging.zip" . | ||
echo "ASSET=$staging.zip" >> $GITHUB_ENV | ||
else | ||
cp "target/${{ matrix.target }}/release/${{ env.BIN_NAME }}" "$staging/" | ||
tar czf "$staging.tar.gz" -C "$staging" . | ||
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV | ||
fi | ||
- name: Upload release archive | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ needs.create-release.outputs.upload_url }} | ||
asset_path: ${{ env.ASSET }} | ||
asset_name: ${{ env.ASSET }} | ||
asset_content_type: application/octet-stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters