Skip to content

Commit 7da5cde

Browse files
Merge branch 'main' into devcontainer-structure-4
2 parents 7c2a085 + 47462b2 commit 7da5cde

File tree

138 files changed

+6963
-6013
lines changed

Some content is hidden

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

138 files changed

+6963
-6013
lines changed

.devcontainer/All/Dockerfile.All

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM ghcr.io/nanoframework/dev-container-all:v2.44
1+
FROM ghcr.io/nanoframework/dev-container-all:v2.45

.devcontainer/All/Dockerfile.All.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ RUN git clone --branch V10.4.1-kernel-only https://github.com/FreeRTOS/FreeRTOS-
9090
RUN git clone --branch STABLE-2_1_3_RELEASE https://github.com/lwip-tcpip/lwip.git --depth 1 ./sources/lwip
9191

9292
# Clone ESP-IDF
93-
RUN git clone --branch v4.4.6 https://github.com/espressif/esp-idf --depth 1 --recursive ./sources/esp-idf
93+
RUN git clone --branch v4.4.7 https://github.com/espressif/esp-idf --depth 1 --recursive ./sources/esp-idf
9494

9595
# Clone what is needed for TI
9696
RUN git clone --branch 4.10.00.07 https://github.com/nanoframework/SimpleLink_CC32xx_SDK.git --depth 1 ./sources/SimpleLinkCC32 \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM ghcr.io/nanoframework/dev-container-esp32:v2.28
1+
FROM ghcr.io/nanoframework/dev-container-esp32:v2.29

.devcontainer/ESP32/Dockerfile.ESP32.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUN mkdir -p /usr/local/bin/gcc
4848
RUN git clone --branch R0.15 https://github.com/abbrev/fatfs.git --depth 1 ./sources/fatfs
4949

5050
# Clone ESP-IDF
51-
RUN git clone --branch v4.4.6 https://github.com/espressif/esp-idf --depth 1 --recursive ./sources/esp-idf
51+
RUN git clone --branch v4.4.7 https://github.com/espressif/esp-idf --depth 1 --recursive ./sources/esp-idf
5252

5353
# Creating static link python for pyhton3
5454
RUN ln -fs /usr/bin/python3 /usr/bin/python \

.github/workflows/devcontainer-all.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ jobs:
2929
steps:
3030
- name: Checkout Repository
3131
uses: actions/checkout@v4
32+
33+
- name: Free Disk Space (Ubuntu)
34+
uses: jlumbroso/free-disk-space@main
35+
with:
36+
# this might remove tools that are actually needed,
37+
# when set to "true" but frees about 6 GB
38+
tool-cache: true
39+
large-packages: false
3240

3341
- name: Get container version
3442
shell: pwsh

.github/workflows/devcontainer-azurertos.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,19 @@ jobs:
2525
permissions:
2626
contents: read
2727
packages: write
28-
2928
steps:
29+
3030
- name: Checkout Repository
3131
uses: actions/checkout@v4
3232

33+
- name: Free Disk Space (Ubuntu)
34+
uses: jlumbroso/free-disk-space@main
35+
with:
36+
# this might remove tools that are actually needed,
37+
# when set to "true" but frees about 6 GB
38+
tool-cache: true
39+
large-packages: false
40+
3341
- name: Get container version
3442
shell: pwsh
3543
run: |

.github/workflows/devcontainer-chibios.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ jobs:
3030
- name: Checkout Repository
3131
uses: actions/checkout@v4
3232

33+
- name: Free Disk Space (Ubuntu)
34+
uses: jlumbroso/free-disk-space@main
35+
with:
36+
# this might remove tools that are actually needed,
37+
# when set to "true" but frees about 6 GB
38+
tool-cache: true
39+
large-packages: false
40+
3341
- name: Get container version
3442
shell: pwsh
3543
run: |

.github/workflows/devcontainer-esp32.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ jobs:
2727
- name: Checkout Repository
2828
uses: actions/checkout@v4
2929

30+
- name: Free Disk Space (Ubuntu)
31+
uses: jlumbroso/free-disk-space@main
32+
with:
33+
# this might remove tools that are actually needed,
34+
# when set to "true" but frees about 6 GB
35+
tool-cache: true
36+
large-packages: false
37+
3038
- name: Get container version
3139
shell: pwsh
3240
run: |

.github/workflows/devcontainer-freertos-nxp.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,17 @@ jobs:
2727
packages: write
2828

2929
steps:
30+
3031
- name: Checkout Repository
3132
uses: actions/checkout@v4
33+
34+
- name: Free Disk Space (Ubuntu)
35+
uses: jlumbroso/free-disk-space@main
36+
with:
37+
# this might remove tools that are actually needed,
38+
# when set to "true" but frees about 6 GB
39+
tool-cache: true
40+
large-packages: false
3241

3342
- name: Get container version
3443
shell: pwsh

.github/workflows/devcontainer-smoketest.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ jobs:
3636
with:
3737
submodules: true
3838

39+
- name: Free Disk Space (Ubuntu)
40+
uses: jlumbroso/free-disk-space@main
41+
with:
42+
# this might remove tools that are actually needed,
43+
# when set to "true" but frees about 6 GB
44+
tool-cache: true
45+
large-packages: false
46+
3947
- name: Update repo submodules
4048
run: |
4149
git submodule update --init

0 commit comments

Comments
 (0)