diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index efe64d7d..163b7bbb 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -164,20 +164,15 @@ jobs: matrix: target: - armv7-unknown-linux-gnueabihf - - mipsel-unknown-linux-gnu - powerpc-unknown-linux-gnu - powerpc64-unknown-linux-gnu - wasm32-unknown-unknown steps: - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 + + - uses: dtolnay/rust-toolchain@stable with: - toolchain: stable target: ${{ matrix.target }} - override: true - - uses: actions-rs/cargo@v1 - with: - use-cross: true - command: build - # Note that this does not test the `protobuf` feature (for now). See reasoning in https://github.com/prometheus/client_rust/pull/98/. - args: --release --target=${{ matrix.target }} + + # Note that this does not test the `protobuf` feature (for now). See reasoning in https://github.com/prometheus/client_rust/pull/98/. + - run: cargo check --target=${{ matrix.target }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 65875346..72dab1fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.22.0] - unreleased +## [0.22.0] ### Changed