-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Did a bunch of work to get everything testing again properly. Add various updates to dependencies and build fixes. Add a few convenience flags for faster testing on already flashed boards. Add debugging information to report exact pin errors during tests. Made all parts fully compatible with running on Linux systems, instead of some parts working on darwin and some parts working on linux. There are still some parts that need to be reworked to not break on updates but for now, it should be suitable to just have some paths updated manually whenever updating esp-idf, etc.
- Loading branch information
Showing
10 changed files
with
139 additions
and
97 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 |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
|
||
steps: | ||
- id: skip_check | ||
uses: fkirc/[email protected].0 | ||
uses: fkirc/[email protected].1 | ||
|
||
build: | ||
needs: pre_job | ||
|
@@ -20,36 +20,21 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Cache build/ | ||
id: cache-build-dir | ||
uses: actions/cache@v3 | ||
with: | ||
path: build | ||
key: build_cache | ||
|
||
- name: Cache deps/ | ||
id: cache-deps-dir | ||
uses: actions/cache@v3 | ||
with: | ||
path: deps | ||
key: deps_cache | ||
|
||
- name: Cache .sconsign.dblite | ||
id: cache-sconsign | ||
uses: actions/cache@v3 | ||
with: | ||
path: .sconsign.dblite | ||
key: sconsign_cache | ||
|
||
- name: Set up Python | ||
run: | | ||
sudo apt-get update -yqq | ||
sudo apt-get install python3 python3-pip python3-venv -yqq | ||
- name: Get x86 libraries | ||
run: sudo apt-get install gcc-multilib -yqq | ||
|
||
- name: Install PlatformIO | ||
run: sudo pip install --upgrade platformio | ||
|
||
- name: Install scons | ||
run: pip install scons | ||
|
||
|
@@ -63,7 +48,7 @@ jobs: | |
uses: actions/upload-artifact@v3 | ||
with: | ||
name: can-dbc | ||
path: build/can/fsae_can.dbc | ||
path: build/can/eol_can.dbc | ||
|
||
- name: Upload OpenCAN Codegen Artifacts | ||
uses: actions/upload-artifact@v3 | ||
|
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
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.