diff options
author | Theo Buehler <tb@openbsd.org> | 2023-11-11 18:57:16 +0100 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-03-03 09:16:10 -0600 |
commit | 3740b7bdc9b1319eca827daef79cbe52fa87a544 (patch) | |
tree | 630da4f262d628800db22fc36d850188f4592fc3 /.github | |
parent | dbc455b911f4db2af94dfa5ca490a8da0750becb (diff) | |
download | portable-3740b7bdc9b1319eca827daef79cbe52fa87a544.tar.gz portable-3740b7bdc9b1319eca827daef79cbe52fa87a544.tar.bz2 portable-3740b7bdc9b1319eca827daef79cbe52fa87a544.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 |