-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into improve-network-config
* main: Minor README.md updates 0.5.0 Prepare README for v0.5.0 release (#532) Set unix cfg correctly Do only set permissions mode on unix Update RELEASE.md Improve log level user interface (#539) Move deserialization into `PeerMessage` to distinct variants correctly (#538) Bring back all connection handler logs to warn level again Add compiling windows binaries as well, remove macos universal one Adjust release profile Add checksum when releasing binaries Add v0.5.0 to CHANGELOG.md Add armv7-unknown-linux-gnueabihf target for cross compilation CI Add CI to compile and publish releases Make clippy happy Convert to ip addresses when logging multiaddr on info level Increase log level of handler errors to trace-level
- Loading branch information
Showing
19 changed files
with
997 additions
and
372 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: build and upload docker image | ||
name: docker | ||
|
||
on: | ||
push: | ||
|
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,50 @@ | ||
name: release | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
push: | ||
tags: | ||
- v[0-9]+.[0-9]+.[0-9]+ | ||
|
||
jobs: | ||
create-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: taiki-e/create-gh-release-action@v1 | ||
with: | ||
changelog: CHANGELOG.md | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
upload-assets: | ||
strategy: | ||
matrix: | ||
include: | ||
- target: aarch64-unknown-linux-gnu # ARM64 Linux (kernel 4.1, glibc 2.17+) | ||
os: ubuntu-latest | ||
- target: x86_64-unknown-linux-gnu # 64-bit Linux (kernel 3.2+, glibc 2.17+) | ||
os: ubuntu-latest | ||
- target: armv7-unknown-linux-gnueabihf # ARMv7-A Linux, hardfloat (kernel 3.2, glibc 2.17, RPi) | ||
os: ubuntu-latest | ||
- target: aarch64-apple-darwin # ARM64 macOS (11.0+, Big Sur+) | ||
os: macos-latest | ||
- target: x86_64-apple-darwin # # 64-bit macOS (10.7+, Lion+) | ||
os: macos-latest | ||
- target: x86_64-pc-windows-gnu # 64-bit MinGW (Windows 7+) | ||
os: windows-latest | ||
- target: x86_64-pc-windows-msvc # 64-bit MSVC (Windows 7+) | ||
os: windows-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: taiki-e/upload-rust-binary-action@v1 | ||
with: | ||
bin: aquadoggo | ||
tar: unix | ||
zip: windows | ||
checksum: sha256,sha512 | ||
archive: $bin-$tag-$target | ||
target: ${{ matrix.target }} | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,8 @@ members = [ | |
"aquadoggo", | ||
"aquadoggo_cli", | ||
] | ||
|
||
[profile.release] | ||
strip = true | ||
lto = true | ||
codegen-units = 1 |
Oops, something went wrong.