Skip to content

Commit 958ff6a

Browse files
authored
Merge pull request #866 from david-cermak/fix/modem_sim
[modem_sim]: ESP-AT build failure on v5.4
2 parents 33a3ec5 + 5ea83be commit 958ff6a

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/modem_sim__build.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,21 @@ jobs:
1111
build_modem_sim:
1212
if: contains(github.event.pull_request.labels.*.name, 'modem_sim') || github.event_name == 'push'
1313
name: Build
14-
strategy:
15-
matrix:
16-
idf_ver: ["release-v5.4"]
17-
runs-on: ubuntu-22.04
18-
container: espressif/idf:${{ matrix.idf_ver }}
14+
runs-on: ubuntu-latest
1915
steps:
2016
- name: Checkout esp-protocols
2117
uses: actions/checkout@v3
18+
- name: Checkout idf
19+
uses: actions/checkout@v3
20+
with:
21+
repository: espressif/esp-idf
22+
ref: 8ad0d3d8f2faab752635bee36070313c47c07a13
23+
path: idf
2224
- name: Build ESP-AT with IDF-${{ matrix.idf_ver }}
2325
shell: bash
2426
run: |
27+
export IDF_PATH=$GITHUB_WORKSPACE/idf
28+
${IDF_PATH}/install.sh
2529
cd common_components/modem_sim
2630
./install.sh
2731
source export.sh

0 commit comments

Comments
 (0)