-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
1,706 additions
and
269 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,41 @@ | ||
version: 2 | ||
jobs: | ||
safety: | ||
machine: | ||
docker_layer_caching: true | ||
steps: | ||
- checkout | ||
- run: | ||
name: Build image | ||
command: "docker build -t panda_safety -f tests/safety/Dockerfile ." | ||
- run: | ||
name: Run safety test | ||
command: | | ||
docker run panda_safety /bin/bash -c "cd /panda/tests/safety; ./test.sh" | ||
build: | ||
machine: | ||
docker_layer_caching: true | ||
steps: | ||
- checkout | ||
- run: | ||
name: Build image | ||
command: "docker build -t panda_build -f tests/build/Dockerfile ." | ||
- run: | ||
name: Test python package installer | ||
command: | | ||
docker run panda_build /bin/bash -c "cd /panda; python setup.py install" | ||
- run: | ||
name: Build STM image | ||
command: | | ||
docker run panda_build /bin/bash -c "cd /panda/board; make bin" | ||
- run: | ||
name: Build ESP image | ||
command: | | ||
docker run panda_build /bin/bash -c "cd /panda/boardesp; make user1.bin" | ||
workflows: | ||
version: 2 | ||
main: | ||
jobs: | ||
- safety | ||
- build |
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 |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
.*.swp | ||
.*.swo | ||
*.o | ||
*.so | ||
*.d | ||
a.out | ||
*~ | ||
.#* | ||
|
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
v1.0.8 | ||
v1.1.1 |
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
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
Oops, something went wrong.