Add test_category in teeio-validator #119
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
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
workflow_dispatch: | |
name: Build binary | |
jobs: | |
build: | |
name: Build binary | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
build_version: [Debug, Release] | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v4 | |
- name: Initialize and update submodules | |
run: git submodule update --init --recursive | |
- name: Prepare build directory | |
run: mkdir -p teeio-validator/build | |
- name: Build | |
run: | | |
cd teeio-validator/build/ | |
cmake -DARCH=x64 -DTOOLCHAIN=GCC -DTARGET=${{matrix.build_version}} -DCRYPTO=mbedtls .. | |
make -j | |