Skip to content

Commit d1b86d9

Browse files
authored
Use GitHub Actions (#407)
1 parent 4a163b9 commit d1b86d9

File tree

2 files changed

+26
-55
lines changed

2 files changed

+26
-55
lines changed

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build
2+
on: [push, pull_request]
3+
4+
jobs:
5+
linux:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v2
10+
with:
11+
submodules: recursive
12+
fetch-depth: 0
13+
14+
- name: Install
15+
run: |
16+
sudo apt-get update
17+
sudo apt-get install cmake time g++-7 gcc-7 binutils libc6 python
18+
19+
- name: Configure
20+
run: ./configure
21+
22+
- name: Build
23+
run: make
24+
25+
- name: Test
26+
run: make test

.travis.yml

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

0 commit comments

Comments
 (0)