8000 Wycheproof -> Rooterberg · aegis-aead/libaegis@3aacc8b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Wycheproof -> Rooterberg #216

Wycheproof -> Rooterberg

Wycheproof -> Rooterberg #216

Workflow file for this run

name: CMake
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
0