forked from jlopp/statoshi
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 782 Bytes
/
statoshi.yml
File metadata and controls
35 lines (32 loc) · 782 Bytes
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
name: statoshi
on:
push:
branches: [ "master", "*" ]
pull_request:
branches: [ "master", "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
submodules: 'true'
set-safe-directory: 'true'
- name: apt-get update/install
run: |
./autogen.sh
sudo apt-get update
sudo apt-get install -y nano wget
sudo apt-get install -y autoconf autotools-dev build-essential bsdmainutils git libboost-all-dev libssl-dev libtool pkg-config automake
- name: ./autogen.sh
run: |
./autogen.sh
#make -C depends
- name: ./configure
run: |
./autogen.sh
./configure
- name: make
run: |
make