Skip to content

Commit 2c4df0d

Browse files
authored
Merge pull request #17 from govertb/gh-actions
Use GitHub actions to compile CPU code
2 parents 9f7d477 + a6ada10 commit 2c4df0d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ccpp.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: compile CPU code
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: pull submodules
13+
run: git submodule init && git submodule update
14+
- name: make (without CUDA support)
15+
run: cd builds/linux && make graph_viewer CUDA_SUPPORT=0

0 commit comments

Comments
 (0)