Skip to content

Commit

Permalink
GitHub actions (commaai#25)
Browse files Browse the repository at this point in the history
* setup github actions

* remove azure pipelines config
  • Loading branch information
adeebshihadeh authored Feb 11, 2020
1 parent 988783f commit 4c50d26
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 14 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tests.yml
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 ."
14 changes: 0 additions & 14 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit 4c50d26

Please sign in to comment.