Allow seed and choice input to Ferret (#91) #106
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 | |
on: [push, pull_request] | |
jobs: | |
build_x86: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
build_type: [Debug, Release] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
env: | |
BUILD_TYPE: ${{matrix.build_type}} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependency | |
run: | | |
wget https://raw.githubusercontent.com/emp-toolkit/emp-readme/master/scripts/install.py | |
python3 install.py --deps --tool=$(cat $GITHUB_WORKSPACE/.github/workflows/emp-tool.dep) | |
- name: Create Build Environment | |
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DUSE_RANDOM_DEVICE=On && make | |
- name: Test | |
shell: bash | |
run: | | |
make test |