From d84593c5fa1bb6d832b1984600dd64786d6c7d5c Mon Sep 17 00:00:00 2001 From: Jose Quintana Date: Thu, 6 Jan 2022 22:09:01 +0100 Subject: [PATCH] chore: stable rust for some pipelines --- .github/workflows/devel.yml | 22 +++++++++++----------- .github/workflows/release.yml | 18 +++++++++--------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/devel.yml b/.github/workflows/devel.yml index 355fa7c..969ddd2 100644 --- a/.github/workflows/devel.yml +++ b/.github/workflows/devel.yml @@ -46,22 +46,22 @@ jobs: # Specific Rust channels - build: pinned os: ubuntu-20.04 - rust: 1.56.1 + rust: 1.57.0 - build: stable os: ubuntu-20.04 rust: stable - build: beta os: ubuntu-20.04 rust: beta - # Our release builds are generated by a nightly compiler to take + # Some of our release builds are generated by a nightly compiler to take # advantage of the latest optimizations/compile time improvements. - build: linux-musl os: ubuntu-20.04 - rust: nightly + rust: stable target: x86_64-unknown-linux-musl - build: linux-musl-i686 os: ubuntu-20.04 - rust: nightly + rust: stable target: i686-unknown-linux-musl - build: linux-musl-arm64 os: ubuntu-20.04 @@ -69,15 +69,15 @@ jobs: target: aarch64-unknown-linux-musl - build: linux-gnu os: ubuntu-20.04 - rust: nightly + rust: stable target: x86_64-unknown-linux-gnu - build: linux-gnu-i686 os: ubuntu-20.04 - rust: nightly + rust: stable target: i686-unknown-linux-gnu - build: linux-gnu-arm64 os: ubuntu-20.04 - rust: nightly + rust: stable target: aarch64-unknown-linux-gnu - build: linux-arm-gnueabihf os: ubuntu-20.04 @@ -85,19 +85,19 @@ jobs: target: arm-unknown-linux-gnueabihf - build: macos os: macos-11 - rust: nightly + rust: stable target: x86_64-apple-darwin - build: macos-arm64 os: macos-11 - rust: nightly + rust: stable target: aarch64-apple-darwin - build: windows-msvc os: windows-2019 - rust: nightly + rust: stable target: x86_64-pc-windows-msvc - build: windows-msvc-i686 os: windows-2019 - rust: nightly + rust: stable target: i686-pc-windows-msvc - build: windows-pc-gnu os: windows-2019 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6875834..d5ded0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,11 +65,11 @@ jobs: include: - build: linux-musl os: ubuntu-20.04 - rust: nightly + rust: stable target: x86_64-unknown-linux-musl - build: linux-musl-i686 os: ubuntu-20.04 - rust: nightly + rust: stable target: i686-unknown-linux-musl - build: linux-musl-arm64 os: ubuntu-20.04 @@ -77,15 +77,15 @@ jobs: target: aarch64-unknown-linux-musl - build: linux-gnu os: ubuntu-20.04 - rust: nightly + rust: stable target: x86_64-unknown-linux-gnu - build: linux-gnu-i686 os: ubuntu-20.04 - rust: nightly + rust: stable target: i686-unknown-linux-gnu - build: linux-gnu-arm64 os: ubuntu-20.04 - rust: nightly + rust: stable target: aarch64-unknown-linux-gnu - build: linux-arm-gnueabihf os: ubuntu-20.04 @@ -93,19 +93,19 @@ jobs: target: arm-unknown-linux-gnueabihf - build: macos os: macos-11 - rust: nightly + rust: stable target: x86_64-apple-darwin - build: macos-arm64 os: macos-11 - rust: nightly + rust: stable target: aarch64-apple-darwin - build: windows-msvc os: windows-2019 - rust: nightly + rust: stable target: x86_64-pc-windows-msvc - build: windows-msvc-i686 os: windows-2019 - rust: nightly + rust: stable target: i686-pc-windows-msvc - build: windows-pc-gnu os: windows-2019 -- libgit2 1.7.2