File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: '🧪 Test Cloud Client'
2
2
3
3
on :
4
4
push :
5
- branches :
5
+ branches :
6
6
- ' main'
7
7
paths :
8
8
- ' **.py'
16
16
- edited
17
17
- reopened
18
18
- synchronize
19
- branches :
19
+ branches :
20
20
- ' main'
21
21
paths :
22
22
- ' **.py'
23
23
- ' .github/workflows/*.yml'
24
24
- ' .github/workflows/*.json'
25
25
- ' !**/README.md'
26
26
27
+ schedule :
28
+ - cron : ' 0 12 * * *' # Runs every day at 12 PM UTC
29
+
27
30
jobs :
28
31
build :
29
32
runs-on : ubuntu-latest
@@ -89,14 +92,18 @@ jobs:
89
92
- name : ' ☁️ Connect to IoT cloud (CPython / Key-Cert Auth / Async)'
90
93
env :
91
94
DEVICE_ID : ${{ secrets.DEVICE_ID2 }}
92
- SECRET_KEY : ${{ secrets.SECRET_KEY }}
93
95
run : |
94
96
python tests/ci.py --file-auth
95
97
98
+ - name : ' ☁️ Connect to IoT cloud (CPython / Key-Cert-CADATA Auth / Async)'
99
+ env :
100
+ DEVICE_ID : ${{ secrets.DEVICE_ID2 }}
101
+ run : |
102
+ python tests/ci.py --file-auth --ca-data
103
+
96
104
- name : ' ☁️ Connect to IoT cloud (CPython / Crypto Auth / Async)'
97
105
env :
98
106
DEVICE_ID : ${{ secrets.DEVICE_ID2 }}
99
- SECRET_KEY : ${{ secrets.SECRET_KEY }}
100
107
run : |
101
108
export SOFTHSM2_CONF="${HOME}/softhsm/tokens/softhsm2.conf"
102
109
python tests/ci.py --crypto-device
@@ -122,7 +129,6 @@ jobs:
122
129
- name : ' ☁️ Connect to IoT cloud (MicroPython / Key-Cert Auth / Async)'
123
130
env :
124
131
DEVICE_ID : ${{ secrets.DEVICE_ID2 }}
125
- SECRET_KEY : ${{ secrets.SECRET_KEY }}
126
132
run : |
127
133
export PATH="${HOME}/cache/bin:${PATH}"
128
134
micropython -c "import sys; print(sys.path)"
You can’t perform that action at this time.
0 commit comments