File tree Expand file tree Collapse file tree 4 files changed +5
-117
lines changed Expand file tree Collapse file tree 4 files changed +5
-117
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
- uses : actions/checkout@v1
12
12
- name : test
13
- run : mkdir build && cd build && cmake .. && make
13
+ run : ./deploy.sh
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ Module.symvers
59
59
Mkfile.old
60
60
dkms.conf
61
61
out /
62
+ build /
62
63
# ## C++ ###
63
64
# Prerequisites
64
65
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- sudo modprobe vcan
4
- ./embedded/utils/setupCAN.sh
5
- make examples VIRTUAL=1
3
+ mkdir build && cd build
4
+ cmake ..
6
5
retVal=$?
7
6
if [ $retVal -ne 0 ]; then
8
7
exit 1
9
8
fi
10
- make VIRTUAL=1
9
+ make
11
10
retVal=$?
12
11
if [ $retVal -ne 0 ]; then
13
12
exit 1
14
13
fi
15
- python3 ./embedded/examples/sims/rms.py &
16
- ./out/tests/can_test
17
14
exit 0
You can’t perform that action at this time.
0 commit comments