Skip to content

Commit 004c4b1

Browse files
committed
feat(core): first step of the migration: foundation (enums and types)
Signed-off-by: Aymane Bahssain <[email protected]>
1 parent fb39ccf commit 004c4b1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+476
-4506
lines changed

.github/workflows/Arduino-build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,15 @@ jobs:
3535
steps:
3636
# First of all, clone the repo using the checkout action.
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@main
39+
with:
40+
submodules: true
41+
42+
- name: debug
43+
run: |
44+
ls ${GITHUB_WORKSPACE}/core/arduino/api
45+
git submodule update --init --force
46+
ls ${GITHUB_WORKSPACE}/core/arduino/api
3947
4048
- name: Compilation
4149
id: Compile

.github/workflows/Cmake.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,15 @@ jobs:
5353

5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@main
57+
with:
58+
submodules: true
59+
60+
- name: debug
61+
run: |
62+
ls ${GITHUB_WORKSPACE}/core/arduino/api
63+
git submodule update --init --force
64+
ls ${GITHUB_WORKSPACE}/core/arduino/api
5765
5866
- name: Get latest CMake and Ninja
5967
uses: lukka/get-cmake@latest

.github/workflows/astyle.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
steps:
3232
# First of all, clone the repo using the checkout action.
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
35+
with:
36+
submodules: true
3537

3638
- name: Astyle check
3739
id: Astyle

.gitmodules

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[submodule "cores/arduino/api"]
22
path = cores/arduino/api
3-
url = https://github.com/stm32duino/ArduinoCore-API.git
3+
url = https://github.com/Aymane-ST/ArduinoCore-API.git
4+
branch = dev

0 commit comments

Comments
 (0)