Skip to content

Sample(openssl-hook): use LD_PRELOAD hook openssl lib to support rats-rs anywhere use openssl lib #8

Sample(openssl-hook): use LD_PRELOAD hook openssl lib to support rats-rs anywhere use openssl lib

Sample(openssl-hook): use LD_PRELOAD hook openssl lib to support rats-rs anywhere use openssl lib #8

Workflow file for this run

name: Testing
on: [push, pull_request]
jobs:
build-and-test:
container: ghcr.io/inclavare-containers/rats-rs:master
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
working-directory: ${{ github.workspace }}
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Prepare repo
run:
git config --global --add safe.directory `pwd` && just prepare-repo
env:
HOME: /root
- name: Compile ${{ github.repository }}
run:
cargo build && cargo build --bin spdm
env:
HOME: /root
- name: Run unit test ${{ github.repository }}
run:
just run-test-in-host
env:
HOME: /root