-
Notifications
You must be signed in to change notification settings - Fork 0
Implement serial communication functions and refactor existing code #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
b3946e5
79933db
98fc8f5
ef20ef6
d462fa5
98b59bd
5e6c9cb
6f8f860
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please rename file to |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,23 +14,32 @@ jobs: | |
| matrix: | ||
| deno: ["2.6.0", "2.5.0"] | ||
|
|
||
| container: | ||
| image: denoland/deno:${{ matrix.deno }} | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Deno | ||
| uses: denoland/setup-deno@v2 | ||
| with: | ||
| deno-version: ${{ matrix.deno }} | ||
|
|
||
| - name: Setup GCC | ||
| uses: egor-tensin/setup-gcc@v2 | ||
| with: | ||
| version: '16' | ||
| platform: 'x64' | ||
|
Comment on lines
+26
to
+30
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought you did not want to use the action anymore? |
||
|
|
||
| - name: Install build dependencies | ||
| run: | | ||
| apt-get update | ||
| apt-get install -y cmake ninja-build g++ socat git | ||
| sudo apt-get update | ||
| sudo apt-get install -y cmake ninja-build socat git | ||
|
|
||
| - name: Configure CMake | ||
| env: | ||
| CXX: g++ | ||
| run: | | ||
| cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release | ||
| cmake -S . -B build -G Ninja \ | ||
| -DCMAKE_BUILD_TYPE=Release \ | ||
| -DCMAKE_C_COMPILER=gcc-16 \ | ||
| -DCMAKE_CXX_COMPILER=g++-16 | ||
|
|
||
| - name: Build | ||
| run: | | ||
|
|
@@ -49,5 +58,3 @@ jobs: | |
| SERIAL_TEST_PORT: /tmp/ttyCI_A | ||
| run: | | ||
| deno task test | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the change? Isn't this just the test file?