From 98291381ff8651b057112ebf52d1ef4a14892c87 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Sat, 11 Nov 2023 18:57:16 +0100 Subject: [PATCH] Fix rust-openssl regress Change around the order slightly. It seems more logical to apply the patch first, then export the env. --- .github/workflows/rust-openssl.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/rust-openssl.yml b/.github/workflows/rust-openssl.yml index 149d2b7d18..cec2de0e7b 100644 --- a/.github/workflows/rust-openssl.yml +++ b/.github/workflows/rust-openssl.yml @@ -29,7 +29,6 @@ jobs: - name: "Run rust-openssl tests" run: | cd rust-openssl - OPENSSL_DIR=${HOME}/opt - LD_LIBRARY_PATH=${HOME}/opt/lib patch -p1 < ../.github/rust-openssl.patch + export OPENSSL_DIR=${HOME}/opt LD_LIBRARY_PATH=${HOME}/opt/lib cargo test --verbose