Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,22 @@ jobs:
- name: Test [user provided keys]
run: |
uta_reg_test key0.bin key1.bin

test_uta_rust_bindings:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build and install libuta
run: |
./bootstrap
./configure HARDWARE=UTA_SIM
make
sudo make install
sudo ldconfig
- name: Build rust bindings and run tests
run: |
cd libuta_rust
export LIBRARY_PATH=/usr/local/lib:$LIBRARY_PATH
cargo build
cargo test