From c7ce40fcdc46c9a8f74c2442b3d87452f5515e6c Mon Sep 17 00:00:00 2001 From: Maxime BORGES Date: Tue, 6 Dec 2022 18:11:28 +0100 Subject: [PATCH 1/2] chore(ci): build for aarch64 (#389) Build and add to the released binaries for `aarch64-unknown-linux-gnu`, `aarch64-apple-darwin` and `aarch64-pc-windows-msvc` --- .github/workflows/release.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0d6bbfeac..b8e00e19a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -32,12 +32,26 @@ jobs: needs: create-release strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + include: + - target: x86_64-unknown-linux-gnu + os: ubuntu-latest + - target: x86_64-apple-darwin + os: macos-latest + - target: x86_64-pc-windows-msvc + os: windows-latest + - target: aarch64-unknown-linux-gnu + os: ubuntu-latest + - target: aarch64-apple-darwin + os: macos-latest + - target: aarch64-pc-windows-msvc + os: windows-latest + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: taiki-e/upload-rust-binary-action@v1 with: bin: tokio-console + target: ${{ matrix.target }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 70fc2c5d694b76499a68eca271ce4e337a313cfd Mon Sep 17 00:00:00 2001 From: Cynthia Coan Date: Tue, 6 Dec 2022 11:12:05 -0700 Subject: [PATCH 2/2] chore(console): upgrade parking_lot to 0.12 (#390) Hey I noticed this out of date in my `Cargo.lock`, and since I didn't see any PRs/issues open doing so already, figured I'd open one! --- Cargo.lock | 2 +- console-subscriber/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 615baa841..ce3617900 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -288,7 +288,7 @@ dependencies = [ "futures", "hdrhistogram", "humantime", - "parking_lot 0.11.2", + "parking_lot 0.12.0", "prost-types", "serde", "serde_json", diff --git a/console-subscriber/Cargo.toml b/console-subscriber/Cargo.toml index f541a5aeb..cbead40f7 100644 --- a/console-subscriber/Cargo.toml +++ b/console-subscriber/Cargo.toml @@ -44,7 +44,7 @@ futures = { version = "0.3", default-features = false } hdrhistogram = { version = "7.3.0", default-features = false, features = ["serialization"] } # The parking_lot dependency is renamed, because we want our `parking_lot` # feature to also enable `tracing-subscriber`'s parking_lot feature flag. -parking_lot_crate = { package = "parking_lot", version = "0.11", optional = true } +parking_lot_crate = { package = "parking_lot", version = "0.12", optional = true } humantime = "2.1.0" prost-types = "0.11.0"