bump up idf to 5.3.1
This commit is contained in:
@@ -105,7 +105,7 @@ commands:
|
|||||||
name: Build
|
name: Build
|
||||||
command: |
|
command: |
|
||||||
if [ << parameters.toolchain >> == esp-idf ]; then
|
if [ << parameters.toolchain >> == esp-idf ]; then
|
||||||
docker run --rm -v $PWD:/project -w /project espressif/idf:v5.1.1 python tools/build.py << parameters.family >>
|
docker run --rm -v $PWD:/project -w /project espressif/idf:v5.3.1 python tools/build.py << parameters.family >>
|
||||||
else
|
else
|
||||||
# Toolchain option default is gcc
|
# Toolchain option default is gcc
|
||||||
if [ << parameters.toolchain >> == arm-clang ]; then
|
if [ << parameters.toolchain >> == arm-clang ]; then
|
||||||
|
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -85,7 +85,7 @@ jobs:
|
|||||||
- 'msp430-gcc'
|
- 'msp430-gcc'
|
||||||
- 'riscv-gcc'
|
- 'riscv-gcc'
|
||||||
- 'rx-gcc'
|
- 'rx-gcc'
|
||||||
- 'esp-idf' # buid-system is ignored
|
- 'esp-idf' # build-system is ignored
|
||||||
with:
|
with:
|
||||||
build-system: 'make'
|
build-system: 'make'
|
||||||
toolchain: ${{ matrix.toolchain }}
|
toolchain: ${{ matrix.toolchain }}
|
||||||
|
4
.github/workflows/build_util.yml
vendored
4
.github/workflows/build_util.yml
vendored
@@ -41,7 +41,7 @@ jobs:
|
|||||||
uses: ./.github/actions/setup_toolchain
|
uses: ./.github/actions/setup_toolchain
|
||||||
with:
|
with:
|
||||||
toolchain: ${{ inputs.toolchain }}
|
toolchain: ${{ inputs.toolchain }}
|
||||||
toolchain_version: 'v5.1.1'
|
toolchain_version: 'v5.3.1'
|
||||||
|
|
||||||
- name: Get Dependencies
|
- name: Get Dependencies
|
||||||
uses: ./.github/actions/get_deps
|
uses: ./.github/actions/get_deps
|
||||||
@@ -61,7 +61,7 @@ jobs:
|
|||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
if [ "${{ inputs.toolchain }}" == "esp-idf" ]; then
|
if [ "${{ inputs.toolchain }}" == "esp-idf" ]; then
|
||||||
docker run --rm -v $PWD:/project -w /project espressif/idf:v5.1.1 python tools/build.py ${{ matrix.arg }}
|
docker run --rm -v $PWD:/project -w /project espressif/idf:v5.3.1 python tools/build.py ${{ matrix.arg }}
|
||||||
else
|
else
|
||||||
python tools/build.py -s ${{ inputs.build-system }} ${{ steps.setup-toolchain.outputs.build_option }} ${{ steps.set-one-per-family.outputs.build_option }} ${{ matrix.arg }}
|
python tools/build.py -s ${{ inputs.build-system }} ${{ steps.setup-toolchain.outputs.build_option }} ${{ steps.set-one-per-family.outputs.build_option }} ${{ matrix.arg }}
|
||||||
fi
|
fi
|
||||||
|
1
.github/workflows/ci_set_matrix.py
vendored
1
.github/workflows/ci_set_matrix.py
vendored
@@ -45,6 +45,7 @@ family_list = {
|
|||||||
"xmc4000": ["arm-gcc"],
|
"xmc4000": ["arm-gcc"],
|
||||||
"-bespressif_kaluga_1": ["esp-idf"],
|
"-bespressif_kaluga_1": ["esp-idf"],
|
||||||
"-bespressif_s3_devkitm": ["esp-idf"],
|
"-bespressif_s3_devkitm": ["esp-idf"],
|
||||||
|
"-bespressif_p4_function_ev": ["esp-idf"],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user