Skip to content

Commit 4c50d26

Browse files
GitHub actions (#25)
* setup github actions * remove azure pipelines config
1 parent 988783f commit 4c50d26

File tree

2 files changed

+23
-14
lines changed

2 files changed

+23
-14
lines changed

.github/workflows/tests.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
8+
runs-on: ubuntu-16.04
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Build docker image
13+
run: docker build -t cereal .
14+
- name: Unit Tests
15+
run: |
16+
docker run cereal bash -c "scons --test --asan -j$(nproc) && messaging/test_runner"
17+
- name: Test ZMQ
18+
run: |
19+
docker run cereal bash -c "ZMQ=1 python -m unittest discover ."
20+
- name: Test MSGQ
21+
run: |
22+
docker run cereal bash -c "MSGQ=1 python -m unittest discover ."
23+

azure-pipelines.yml

-14
This file was deleted.

0 commit comments

Comments
 (0)