-
Notifications
You must be signed in to change notification settings - Fork 13
92 lines (90 loc) · 2.14 KB
/
ci-unix.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: ci-unix
on:
push:
branches:
- '*'
paths:
- '.github/**'
- 'src/**'
- 'include/**'
- 'test/**'
- 'libkeccak/**'
- 'CMakeLists.txt'
pull_request:
branches:
- '*'
paths:
- '.github/**'
- 'src/**'
- 'include/**'
- 'test/**'
- 'libkeccak/**'
- 'CMakeLists.txt'
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Envinfo
run: npx envinfo
- name: Initialize and update submodules
run: |
git submodule init
git submodule update
- uses: actions/checkout@v2
with:
repository: bitcoin-core/secp256k1
path: libsecp256k1
- name: Build and install libsecp256k1
run: |
brew install libtool automake
cd libsecp256k1
./autogen.sh
./configure --enable-module-recovery --enable-benchmark=no --enable-tests=no
make
sudo make install
pkg-config --cflags --libs libsecp256k1
- name: Build
run: |
mkdir build
cd build
cmake -DETHC_BUILD_TESTS=ON ..
make
ls -lh
- name: Test
run: |
cd build
make test ARGS="-V"
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Envinfo
run: npx envinfo
- name: Initialize and update submodules
run: |
git submodule init
git submodule update
- uses: actions/checkout@v2
with:
repository: bitcoin-core/secp256k1
path: libsecp256k1
- name: Build and install libsecp256k1
run: |
cd libsecp256k1
./autogen.sh
./configure --enable-module-recovery --enable-benchmark=no --enable-tests=no
make
sudo make install
pkg-config --cflags --libs libsecp256k1
- name: Build
run: |
mkdir build
cd build
cmake -DETHC_BUILD_TESTS=ON ..
make
ls -lh
- name: Test
run: |
cd build
make test ARGS="-V"