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 1010 steps :
1111 - uses : actions/checkout@v1
1212 - 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
5959Mkfile.old
6060dkms.conf
6161out /
62+ build /
6263# ## C++ ###
6364# Prerequisites
6465
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- sudo modprobe vcan
4- ./embedded/utils/setupCAN.sh
5- make examples VIRTUAL=1
3+ mkdir build && cd build
4+ cmake ..
65retVal=$?
76if [ $retVal -ne 0 ]; then
87 exit 1
98fi
10- make VIRTUAL=1
9+ make
1110retVal=$?
1211if [ $retVal -ne 0 ]; then
1312 exit 1
1413fi
15- python3 ./embedded/examples/sims/rms.py &
16- ./out/tests/can_test
1714exit 0
You can’t perform that action at this time.
0 commit comments