-
Notifications
You must be signed in to change notification settings - Fork 11
52 lines (40 loc) · 1.08 KB
/
ci.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
47
48
49
50
51
name: Ubuntu CI Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install prerequisites
run: sudo apt-get update && sudo apt-get install -y cmake build-essential libboost-all-dev libssl-dev libcurl4-openssl-dev libsodium-dev
- name: Install Foundry
run: |
export PATH="$PATH:$HOME/.foundry/bin"
curl -L https://foundry.paradigm.xyz | bash
ls $HOME -alh
find ~ -name "foundryup"
foundryup
- name: Start node in background
run: |
anvil &
echo "NODE_PID=$!" >> $GITHUB_ENV
- name: Create Build Directory
run: mkdir -p build
- name: CMake Generate
run: cmake -Bbuild -H.
- name: Compile
run: cmake --build build
- name: Run tests
run: ctest -VV --repeat until-pass:2 --test-dir build
- name: Kill node
run: kill $NODE_PID
if: always()