From 59261d04c5618711d63d457863a83e55f770efc1 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Sun, 19 Mar 2023 23:19:00 -0600 Subject: Adjust rust-openssl version check --- .github/rust-openssl.patch | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to '.github') diff --git a/.github/rust-openssl.patch b/.github/rust-openssl.patch index 9ff4ea0..fac4ae6 100644 --- a/.github/rust-openssl.patch +++ b/.github/rust-openssl.patch @@ -1,12 +1,11 @@ diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs -index cdea3eb4..b16ebecf 100644 +index 3357518f..f55b5def 100644 --- a/openssl-sys/build/main.rs +++ b/openssl-sys/build/main.rs -@@ -282,7 +282,7 @@ See rust-openssl documentation for more information: - (3, 5, _) => ('3', '5', 'x'), - (3, 6, 0) => ('3', '6', '0'), +@@ -295,6 +295,7 @@ See rust-openssl documentation for more information: (3, 6, _) => ('3', '6', 'x'), -- (3, 7, 0) => ('3', '7', '0'), + (3, 7, 0) => ('3', '7', '0'), + (3, 7, 1) => ('3', '7', '1'), + (3, 7, _) => ('3', '7', 'x'), _ => version_error(), }; -- cgit v1.2.3-55-g6feb From fa35b982c474f8a2f8b8f4cd13b60ff7b4428be7 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Thu, 23 Mar 2023 06:09:38 -0500 Subject: enable CI for mips32/mips64 --- .github/workflows/cross_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/cross_test.yml b/.github/workflows/cross_test.yml index 649cd2f..fc742e7 100644 --- a/.github/workflows/cross_test.yml +++ b/.github/workflows/cross_test.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04, ubuntu-22.04] - arch: [mingw32, mingw64, arm32, arm64] + arch: [mingw32, mingw64, arm32, arm64, mips32, mips64] runs-on: ${{ matrix.os }} continue-on-error: false env: -- cgit v1.2.3-55-g6feb