Skip to content

Commit 52d77c3

Browse files
solomonjosephValarDragon
authored andcommitted
GitHub Actions for Linux (#65)
* Added Github Actions CI for Linux
1 parent 6a9dace commit 52d77c3

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

.github/workflows/integrate.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Integrate
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: before_install
11+
run: |
12+
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
13+
sudo apt-get -q update
14+
sudo apt-get install build-essential git libboost-all-dev cmake libgmp3-dev libssl-dev libsodium-dev libprocps-dev pkg-config gcc-5 g++-5
15+
- name: before_script
16+
run: |
17+
git submodule init && git submodule update
18+
mkdir build && cd build && cmake ..
19+
- name: tests
20+
run: |
21+
cd build
22+
make
23+
make check

.travis.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)