diff options
Diffstat (limited to '.github/workflows/rust_regress.yml')
-rw-r--r-- | .github/workflows/rust_regress.yml | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/.github/workflows/rust_regress.yml b/.github/workflows/rust_regress.yml deleted file mode 100644 index ef2d80e..0000000 --- a/.github/workflows/rust_regress.yml +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | name: rust regress tests | ||
2 | |||
3 | on: | ||
4 | schedule: | ||
5 | - cron: "0 0 * * *" | ||
6 | |||
7 | jobs: | ||
8 | rust-openssl: | ||
9 | runs-on: ubuntu-latest | ||
10 | steps: | ||
11 | - uses: actions/checkout@main | ||
12 | - name: Install apt dependencies | ||
13 | run: | | ||
14 | sudo apt-get update | ||
15 | sudo apt-get install -y cargo | ||
16 | - name: Build LibreSSL | ||
17 | run: | | ||
18 | ./autogen.sh | ||
19 | ./configure | ||
20 | make dist | ||
21 | tar zxvf libressl-*.tar.gz | ||
22 | rm libressl-*.tar.gz | ||
23 | cd libressl-* | ||
24 | ./configure --prefix="${HOME}/opt" | ||
25 | make all install | ||
26 | - name: run rust-openssl tests | ||
27 | run: | | ||
28 | git clone https://github.com/sfackler/rust-openssl.git | ||
29 | cd rust-openssl | ||
30 | export OPENSSL_DIR=${HOME}/opt | ||
31 | export LD_LIBRARY_PATH=${HOME}/opt/lib | ||
32 | patch -p1 < ../.github/rust-openssl.patch | ||
33 | cargo test | ||