File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 31
31
dockerRunArgs : --volume "${PWD}/${{ env.DISTPATH }}:/${{ env.DISTPATH }}"
32
32
install : |
33
33
apt-get update -y
34
- apt-get install -y python3 python3-pip python3-setuptools libffi-dev
34
+ apt-get install --ignore-missing - y python3 python3-pip python3-setuptools python-is-python3 pkg-config openssl libffi-dev libssl-dev cargo rustc
35
35
run : |
36
36
adduser --disabled-password --gecos "" builder
37
37
chmod -R a+rwx /home/runner/work/esptool
@@ -48,13 +48,13 @@ jobs:
48
48
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico --add-data="${{ env.EFUSE_DIR }}*.yaml:${{ env.EFUSE_DIR }}" espefuse.py
49
49
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico espsecure.py
50
50
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico esp_rfc2217_server.py
51
-
51
+
52
52
# Test binaries
53
- ./${{ env.DISTPATH }}/esptool -h
54
- ./${{ env.DISTPATH }}/espefuse -h
55
- ./${{ env.DISTPATH }}/espsecure -h
56
- ./${{ env.DISTPATH }}/esp_rfc2217_server -h
57
-
53
+ ./${{ env.DISTPATH }}/esptool -h || exit 1
54
+ ./${{ env.DISTPATH }}/espefuse -h || exit 1
55
+ ./${{ env.DISTPATH }}/espsecure -h || exit 1
56
+ ./${{ env.DISTPATH }}/esp_rfc2217_server -h || exit 1
57
+
58
58
# Add license and readme
59
59
mv LICENSE README.md ./${{ env.DISTPATH }}
60
60
You can’t perform that action at this time.
0 commit comments