forked from commaai/openpilot
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
eba4349 put liveLocation in qlogs 6c4735f add fixed fingerprintSource 4c50d26 GitHub actions (#25) 988783f Merge pull request #28 from commaai/power_monitoring b43fd06 Added offroad power usage git-subtree-dir: cereal git-subtree-split: eba4349
- Loading branch information
Vehicle Researcher
committed
Feb 18, 2020
1 parent
60d3364
commit 1a48e6e
Showing
5 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Tests | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-16.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build docker image | ||
run: docker build -t cereal . | ||
- name: Unit Tests | ||
run: | | ||
docker run cereal bash -c "scons --test --asan -j$(nproc) && messaging/test_runner" | ||
- name: Test ZMQ | ||
run: | | ||
docker run cereal bash -c "ZMQ=1 python -m unittest discover ." | ||
- name: Test MSGQ | ||
run: | | ||
docker run cereal bash -c "MSGQ=1 python -m unittest discover ." | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -477,5 +477,6 @@ struct CarParams { | |
enum FingerprintSource { | ||
can @0; | ||
fw @1; | ||
fixed @2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters