We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7a8c43 commit 58be76dCopy full SHA for 58be76d
1 file changed
.github/workflows/ports_quectel.yml
@@ -15,13 +15,14 @@ jobs:
15
16
- name: Install Special SDK Tool
17
run: |
18
- curl -L "https://github.com/QuecPython/toolchain/releases/download/V1.1.0/helios-toolchain" -o /root/helios-toolchain
19
- chmod +x /root/helios-toolchain
20
- cd /root
+ mkdir -p $HOME/tools
+ curl -L "https://github.com/QuecPython/toolchain/releases/download/V1.1.0/helios-toolchain" -o $HOME/tools
+ chmod +x $HOME/tools/helios-toolchain
21
+ cd $HOME/tools
22
helios-toolchain
23
cd /helios/bin
24
helios
- echo "/helios/bin" >> $GITHUB_PATH
25
+ echo "$HOME/tools/helios/bin" >> $GITHUB_PATH
26
27
- name: Build mpy-cross
28
run: make -C mpy-cross
0 commit comments