diff options
author | Theo Buehler <tb@openbsd.org> | 2023-11-11 18:57:16 +0100 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2023-11-11 19:24:33 +0100 |
commit | 98291381ff8651b057112ebf52d1ef4a14892c87 (patch) | |
tree | 9de87d2d1f68674257690bacb723b9173f6e822b /.github | |
parent | 194a4a5fd45fab5967878296d575644789bcafb9 (diff) | |
download | portable-98291381ff8651b057112ebf52d1ef4a14892c87.tar.gz portable-98291381ff8651b057112ebf52d1ef4a14892c87.tar.bz2 portable-98291381ff8651b057112ebf52d1ef4a14892c87.zip |
Fix rust-openssl regress
Change around the order slightly. It seems more logical to apply the
patch first, then export the env.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/rust-openssl.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/rust-openssl.yml b/.github/workflows/rust-openssl.yml index 149d2b7..cec2de0 100644 --- a/.github/workflows/rust-openssl.yml +++ b/.github/workflows/rust-openssl.yml | |||
@@ -29,7 +29,6 @@ jobs: | |||
29 | - name: "Run rust-openssl tests" | 29 | - name: "Run rust-openssl tests" |
30 | run: | | 30 | run: | |
31 | cd rust-openssl | 31 | cd rust-openssl |
32 | OPENSSL_DIR=${HOME}/opt | ||
33 | LD_LIBRARY_PATH=${HOME}/opt/lib | ||
34 | patch -p1 < ../.github/rust-openssl.patch | 32 | patch -p1 < ../.github/rust-openssl.patch |
33 | export OPENSSL_DIR=${HOME}/opt LD_LIBRARY_PATH=${HOME}/opt/lib | ||
35 | cargo test --verbose | 34 | cargo test --verbose |