|
17 | 17 | { target: SL_STK3701A, build-type: Debug, container: All}, |
18 | 18 | { target: ST_STM32F769I_DISCOVERY, build-type: Debug, container: ChibiOS }, |
19 | 19 | { target: ST_STM32F769I_DISCOVERY, build-type: Debug, container: All }, |
| 20 | + { target: ORGPAL_PALTHREE, build-type: Debug, container: ChibiOS }, |
20 | 21 | { target: M5Core2, build-type: Debug, container: ESP32 }, |
21 | 22 | { target: ESP_WROVER_KIT, build-type: Debug, container: ESP32 }, |
22 | 23 | { target: ESP32_S2_USB, build-type: Debug, container: ESP32 }, |
|
35 | 36 | contents: read |
36 | 37 |
|
37 | 38 | steps: |
38 | | - - uses: actions/checkout@v4 |
| 39 | + - uses: actions/checkout@v5 |
39 | 40 | with: |
40 | 41 | submodules: true |
41 | 42 |
|
|
47 | 48 | tool-cache: true |
48 | 49 | large-packages: false |
49 | 50 |
|
50 | | - - name: Update repo submodules |
51 | | - run: | |
52 | | - git submodule update --init |
53 | | -
|
54 | 51 | - name: Adjust config templates for a devcontainer |
55 | 52 | run: | |
56 | 53 | # Move into the config directory |
|
61 | 58 | mv user-tools-repos.TEMPLATE.json user-tools-repos.json |
62 | 59 |
|
63 | 60 | # Adjust the file content for a valid radio frequency (TI targets) |
64 | | - sed -i -- 's|"RADIO_FREQUENCY": "CHANGE_ME_TO_A_VALID_VALUE_868_OR_915"|"RADIO_FREQUENCY": "${{ matrix.radio-freq }}"|g' user-prefs.json |
| 61 | + if [[ -n "${{ matrix.radio-freq }}" ]]; then |
| 62 | + sed -i -- 's|"RADIO_FREQUENCY": "CHANGE_ME_TO_A_VALID_VALUE_868_OR_915"|"RADIO_FREQUENCY": "${{ matrix.radio-freq }}"|g' user-prefs.json |
| 63 | + fi |
65 | 64 |
|
66 | 65 | # Adjust the file content for a devcontainer |
67 | 66 | sed -i -- 's|"name": "user-tools-repos-container"|"name": "user-tools-repos"|g' user-tools-repos.json |
|
0 commit comments