From 3bb75c929d3d3f32bb360f897830dd833966cfab Mon Sep 17 00:00:00 2001 From: "C.Lee Taylor" <47312074+leet4tari@users.noreply.github.com> Date: Thu, 10 Aug 2023 19:52:26 +0200 Subject: [PATCH] chore(ci): match toolchain for all workflows (#5627) Description Update and match all workflow's toolchain Motivation and Context Fix some of the CI that do not have the correct toolchain installed. How Has This Been Tested? Built in local fork What process can a PR reviewer use to test or verify this change? Check that CI passes Co-authored-by: SW van Heerden --- .github/workflows/base_node_binaries.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/coverage.yml | 2 +- .github/workflows/integration_tests.yml | 2 +- rust-toolchain.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/base_node_binaries.yml b/.github/workflows/base_node_binaries.yml index d8f481da96..361704a7b3 100644 --- a/.github/workflows/base_node_binaries.yml +++ b/.github/workflows/base_node_binaries.yml @@ -19,7 +19,7 @@ name: Build Matrix of Binaries env: TBN_FILENAME: "tari_suite" TBN_BUNDLEID_BASE: "com.tarilabs.pkg" - toolchain: nightly-2022-11-03 + toolchain: nightly-2023-06-03 matrix-json-file: ".github/workflows/base_node_binaries.json" CARGO_HTTP_MULTIPLEXING: false CARGO_UNSTABLE_SPARSE_REGISTRY: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e43648f73b..9ba204ead7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ name: CI merge_group: env: - toolchain: nightly-2022-11-03 + toolchain: nightly-2023-06-03 CARGO_HTTP_MULTIPLEXING: false CARGO_TERM_COLOR: always CARGO_UNSTABLE_SPARSE_REGISTRY: true diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 20f46ea300..1241d0ebc8 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -11,7 +11,7 @@ name: Source Coverage - ci-coverage-* env: - toolchain: nightly-2022-11-03 + toolchain: nightly-2023-06-03 concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index f19435d6e9..8b0d81fc29 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -27,7 +27,7 @@ name: Integration tests type: string env: - toolchain: nightly-2022-11-03 + toolchain: nightly-2023-06-03 concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 96440e4837..8d97892fc4 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -13,4 +13,4 @@ # - the CI files in .github folder # - the Makefile in base_layer/key_manager/Makefile [toolchain] -channel = "nightly-2023-06-04" +channel = "nightly-2023-06-03"