forked from commaai/openpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* setup github actions * remove azure pipelines config
- Loading branch information
1 parent
988783f
commit 4c50d26
Showing
2 changed files
with
23 additions
and
14 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.