From 6f281b2e307b597ed21148b47dc6874379de3a3e Mon Sep 17 00:00:00 2001 From: Amr Bashir Date: Thu, 9 May 2024 14:58:45 +0300 Subject: [PATCH] ci: pin `cross` to a commit before they bumped msrv (#9712) * ci: pin `cross` to a commit before they bumped msrv bump commit: https://github.com/cross-rs/cross/commit/7129d5ab15c5b293cfeb439a0d41e116988edcc2 pre-bump commit: https://github.com/cross-rs/cross/commit/1b8cf50d20180c1a394099e608141480f934b7f7 * Update test-core.yml --- .github/workflows/test-core.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index 30259b1c4..92c425aa1 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -93,8 +93,9 @@ jobs: - name: test (using cross) if: ${{ matrix.platform.cross }} + # update or remove the rev once we update the MSRV from 1.70.0 run: | - cargo install cross --git https://github.com/cross-rs/cross --locked + cargo install cross --git https://github.com/cross-rs/cross --rev 20c73df79c9aaf78a2ad2e9fe8ae981668a729dc --locked cross ${{ matrix.platform.command }} --target ${{ matrix.platform.target }} ${{ matrix.features.args }} - name: test (using cargo)