Merge branch 'master' into exp-threading #93
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: X86 build and run unit test | |
on: [push] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: | | |
sudo ./install_dep.sh | |
- name: Build | |
run: | | |
./build_cmake.sh | |
- name: Test generate keys | |
run: | | |
./build/wfb_keygen | |
- name: Unit test | |
run: | | |
./build/unit_test | |