We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91ad297 commit 0f99307Copy full SHA for 0f99307
.github/workflows/ci.yml
@@ -91,7 +91,14 @@ jobs:
91
- name: Install build dependencies
92
run: |
93
apt-get update
94
- apt-get install -qq -y zip
+ apt-get install -qq -y zip curl python
95
+
96
+ - name: Update TLS Truststore
97
+ run: |
98
+ cd src/truststore/
99
+ curl --remote-name https://raw.githubusercontent.com/espressif/arduino-esp32/master/tools/gen_crt_bundle.py
100
+ curl --remote-name https://curl.se/ca/cacert.pem
101
+ python3 gen_crt_bundle.py --input cacert.pem
102
103
- name: Build firmware
104
0 commit comments