forked from digibyte/digibyte
-
Notifications
You must be signed in to change notification settings - Fork 65
57 lines (44 loc) · 1.49 KB
/
ci-coverage-ubuntu-full-qt-tests.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
52
53
54
55
56
57
name: 'Build & Check: Ubuntu Full QT & Tests'
on:
push:
pull_request:
branches: [ develop, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Basic Build Dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential libtool autotools-dev automake pkg-config python3 \
libssl-dev bsdmainutils libevent-dev \
libboost-dev libboost-system-dev libboost-filesystem-dev libboost-test-dev \
libsqlite3-dev \
libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools \
libqrencode-dev
- name: Install pypandoc
run: pip3 install pypandoc
- name: Install scrypt for Python3
run: pip3 install digibyte_scrypt
- name: Install BerkleyDB
run: ./contrib/install_db4.sh `pwd` --enable-cxx
- name: Build Dependencies
run: |
cd depends
make -j3 HOST=x86_64-linux-gnu
cd ..
- name: Auto Generate
run: ./autogen.sh
- name: Configure
run: CONFIG_SITE=$PWD/depends/x86_64-linux-gnu/share/config.site ./configure --with-bdb --with-sqlite --with-gui=yes
- name: Make
run: make -j3
- name: Make Check
run: make check -j3
- name: Upload Test Suite Log
uses: actions/upload-artifact@v3
if: failure()
with:
name: test-suite-log
path: /src/test-suite.log