forked from bitcoin-core/secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 3
46 lines (44 loc) · 1.2 KB
/
build-with-cmake.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Build using CMake
on:
push:
branches:
- frost
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-with-cmake:
runs-on: ubuntu-22.04
# Use fedora:38 to compile using gcc-13
container:
image: fedora:38
steps:
- name: Install build dependencies
run: |
dnf install -y \
cmake \
gcc
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Build with CMake
run: |
mkdir build
cd build
cmake \
-DCMAKE_C_FLAGS="-Werror" \
-DCMAKE_BUILD_TYPE="Release" \
-DSECP256K1_BUILD_TESTS=ON \
-DSECP256K1_BUILD_EXHAUSTIVE_TESTS=OFF \
-DSECP256K1_BUILD_BENCHMARK=OFF \
-DSECP256K1_BUILD_EXAMPLES=ON \
-DSECP256K1_EXPERIMENTAL=ON \
-DSECP256K1_ENABLE_MODULE_FROST=ON \
..
make -j
- name: Run FROST example
run: |
"${GITHUB_WORKSPACE}/build/examples/frost_example"
- name: Run functional tests
run: |
"${GITHUB_WORKSPACE}/build/src/tests"