File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ commands:
121121 TOOLCHAIN_OPTION="--toolchain clang"
122122 elif [ << parameters.toolchain >> == arm-iar ]; then
123123 TOOLCHAIN_OPTION="--toolchain iar"
124+ echo IAR_LMS_CLOUD_URL=$IAR_LMS_CLOUD_URL
124125 iccarm --version
125126 elif [ << parameters.toolchain >> == arm-gcc ]; then
126127 TOOLCHAIN_OPTION="--toolchain gcc"
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ jobs:
119119 runs-on : [self-hosted, Linux, X64, hifiphile]
120120 env :
121121 BUILD_ARGS : ${{ join(fromJSON(needs.set-matrix.outputs.json)['arm-iar'], ' ') }}
122+ IAR_LMS_CLOUD_URL : ${{ vars.IAR_LMS_CLOUD_URL }}
122123 IAR_LMS_BEARER_TOKEN : ${{ secrets.IAR_LMS_BEARER_TOKEN }}
123124 steps :
124125 - name : Clean workspace
@@ -128,7 +129,9 @@ jobs:
128129 mkdir -p "${{ github.workspace }}"
129130
130131 - name : Toolchain version
131- run : iccarm --version
132+ run : |
133+ echo IAR_LMS_CLOUD_URL=$IAR_LMS_CLOUD_URL
134+ iccarm --version
132135
133136 - name : Checkout TinyUSB
134137 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 9696 if : github.repository_owner == 'hathach' && github.event.pull_request.head.repo.fork == false
9797 runs-on : [self-hosted, Linux, X64, hifiphile]
9898 env :
99+ IAR_LMS_CLOUD_URL : ${{ vars.IAR_LMS_CLOUD_URL }}
99100 IAR_LMS_BEARER_TOKEN : ${{ secrets.IAR_LMS_BEARER_TOKEN }}
100101 steps :
101102 - name : Clean workspace
@@ -105,7 +106,9 @@ jobs:
105106 mkdir -p "${{ github.workspace }}"
106107
107108 - name : Toolchain version
108- run : iccarm --version
109+ run : |
110+ echo IAR_LMS_CLOUD_URL=$IAR_LMS_CLOUD_URL
111+ iccarm --version
109112
110113 - name : Checkout TinyUSB
111114 uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments