forked from espressif/esp-at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
630 lines (568 loc) · 25.1 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
stages:
- build
- deploy
esp32_wroom_at:
stage: build
image: $CI_DOCKER_REGISTRY/esp32-ci-env
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
artifacts:
paths:
- build/*.bin
- build/*.elf
- build/*.map
- build/bootloader/*.bin
- build/partition_table/*.bin
- build/customized_partitions/*.bin
- build/flasher_args.json
- build/download.config
- build/factory/*
expire_in: 6 mos
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
- cd main
- rm -f at_config.h
- echo -e "#ifndef __AT_CONFIG_H__" >> at_config.h
- echo -e "#define __AT_CONFIG_H__" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#endif" >> at_config.h
- cd -
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_esp32_default/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_esp32_default/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/idf/esp-idf.git
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
- time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP32
- export ESP_AT_MODULE_NAME=WROOM-32
- export ESP_AT_PROJECT_PATH=$(pwd)
- ./esp-idf/tools/idf.py build
- cp build/flash_project_args build/download.config
# - make print_flash_cmd | tail -n 1 > build/download.config
# - make factory_bin
esp32_wrover_at:
stage: build
image: $CI_DOCKER_REGISTRY/esp32-ci-env
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
artifacts:
paths:
- build/*.bin
- build/*.elf
- build/*.map
- build/bootloader/*.bin
- build/partition_table/*.bin
- build/customized_partitions/*.bin
- build/flasher_args.json
- build/download.config
- build/factory/*
expire_in: 6 mos
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
- cd main
- rm -f at_config.h
- echo -e "#ifndef __AT_CONFIG_H__" >> at_config.h
- echo -e "#define __AT_CONFIG_H__" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#endif" >> at_config.h
- cd -
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_wrover-32/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_wrover-32/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/idf/esp-idf.git
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
- time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP32
- export ESP_AT_MODULE_NAME=WROVER-32
- export ESP_AT_PROJECT_PATH=$(pwd)
- ./esp-idf/tools/idf.py build -DSILENCE=1
- cp build/flash_project_args build/download.config
# - make print_flash_cmd | tail -n 1 > build/download.config
# - make factory_bin
pico_d4_at:
stage: build
image: $CI_DOCKER_REGISTRY/esp32-ci-env
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
artifacts:
paths:
- build/*.bin
- build/*.elf
- build/*.map
- build/bootloader/*.bin
- build/partition_table/*.bin
- build/customized_partitions/*.bin
- build/flasher_args.json
- build/download.config
- build/factory/*
expire_in: 6 mos
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
- cd main
- rm -f at_config.h
- echo -e "#ifndef __AT_CONFIG_H__" >> at_config.h
- echo -e "#define __AT_CONFIG_H__" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#endif" >> at_config.h
- cd -
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_esp32_default/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_esp32_default/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/idf/esp-idf.git
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
- time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP32
- export ESP_AT_MODULE_NAME=PICO-D4
- export ESP_AT_PROJECT_PATH=$(pwd)
- ./esp-idf/tools/idf.py build
- cp build/flash_project_args build/download.config
# - make print_flash_cmd | tail -n 1 > build/download.config
# - make factory_bin
solo_1_at:
stage: build
image: $CI_DOCKER_REGISTRY/esp32-ci-env
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
artifacts:
paths:
- build/*.bin
- build/*.elf
- build/*.map
- build/bootloader/*.bin
- build/partition_table/*.bin
- build/customized_partitions/*.bin
- build/flasher_args.json
- build/download.config
- build/factory/*
expire_in: 6 mos
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
- cd main
- rm -f at_config.h
- echo -e "#ifndef __AT_CONFIG_H__" >> at_config.h
- echo -e "#define __AT_CONFIG_H__" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#endif" >> at_config.h
- cd -
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_esp32_default/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_esp32_default/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/idf/esp-idf.git
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
- time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP32
- export ESP_AT_MODULE_NAME=SOLO-1
- export ESP_AT_PROJECT_PATH=$(pwd)
- ./esp-idf/tools/idf.py build
- cp build/flash_project_args build/download.config
# - make print_flash_cmd | tail -n 1 > build/download.config
# - make factory_bin
esp8266_wroom_02_at:
stage: build
image: $CI_DOCKER_REGISTRY/esp8266-ci-env-new
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
artifacts:
paths:
- build/*.bin
- build/*.elf
- build/*.map
- build/bootloader/*.bin
- build/partition_table/*.bin
- build/customized_partitions/*.bin
- build/flasher_args.json
- build/download.config
- build/factory/*
expire_in: 6 mos
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
- cd main
- rm -f at_config.h
- echo -e "#ifndef __AT_CONFIG_H__" >> at_config.h
- echo -e "#define __AT_CONFIG_H__" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM_02 \"$AT_OTA_TOKEN_WROOM_02_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM_02 \"$AT_OTA_TOKEN_WROOM_02_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM_S2 \"$AT_OTA_TOKEN_WROOM_S2_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM_S2 \"$AT_OTA_TOKEN_WROOM_S2_1024_1024\"" >> at_config.h
- echo -e "#endif" >> at_config.h
- cd -
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_esp8266_default/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_esp8266_default/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/sdk/ESP8266_RTOS_SDK.git esp-idf
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
# - time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP8266
- export ESP_AT_MODULE_NAME=WROOM-02
- export ESP_AT_PROJECT_PATH=$(pwd)
- ./esp-idf/tools/idf.py build
- cp build/flash_project_args build/download.config
# - make print_flash_cmd | tail -n 1 > build/download.config
# - make factory_bin
esp8266_1MB_at:
stage: build
image: $CI_DOCKER_REGISTRY/esp8266-ci-env-new
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
artifacts:
paths:
- build/*.bin
- build/*.elf
- build/*.map
- build/bootloader/*.bin
- build/partition_table/*.bin
- build/customized_partitions/*.bin
- build/flasher_args.json
- build/download.config
- build/factory/*
expire_in: 6 mos
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
- cd main
- rm -f at_config.h
- echo -e "#ifndef __AT_CONFIG_H__" >> at_config.h
- echo -e "#define __AT_CONFIG_H__" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM_02 \"$AT_OTA_TOKEN_WROOM_02_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM_02 \"$AT_OTA_TOKEN_WROOM_02_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM_S2 \"$AT_OTA_TOKEN_WROOM_S2_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM_S2 \"$AT_OTA_TOKEN_WROOM_S2_1024_1024\"" >> at_config.h
- echo -e "#endif" >> at_config.h
- cd -
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_esp8266_1mb/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_esp8266_1mb/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/sdk/ESP8266_RTOS_SDK.git esp-idf
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
# - time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP8266
- export ESP_AT_MODULE_NAME=ESP8266_1MB
- export ESP_AT_PROJECT_PATH=$(pwd)
- ./esp-idf/tools/idf.py build
- cp build/flash_project_args build/download.config
# - make print_flash_cmd | tail -n 1 > build/download.config
# - make factory_bin
esp8266_wroom_5V2L_at:
stage: build
image: $CI_DOCKER_REGISTRY/esp8266-ci-env-new
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
artifacts:
paths:
- build/*.bin
- build/*.elf
- build/*.map
- build/bootloader/*.bin
- build/partition_table/*.bin
- build/customized_partitions/*.bin
- build/flasher_args.json
- build/download.config
- build/factory/*
expire_in: 6 mos
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
- cd main
- rm -f at_config.h
- echo -e "#ifndef __AT_CONFIG_H__" >> at_config.h
- echo -e "#define __AT_CONFIG_H__" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM_02 \"$AT_OTA_TOKEN_WROOM_02_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM_02 \"$AT_OTA_TOKEN_WROOM_02_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM_S2 \"$AT_OTA_TOKEN_WROOM_S2_1024_1024\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM_S2 \"$AT_OTA_TOKEN_WROOM_S2_1024_1024\"" >> at_config.h
- echo -e "#endif" >> at_config.h
- cd -
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_esp8266_default/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_esp8266_default/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/sdk/ESP8266_RTOS_SDK.git esp-idf
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
# - time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP8266
- export ESP_AT_MODULE_NAME=WROOM-5V2L
- export ESP_AT_PROJECT_PATH=$(pwd)
- ./esp-idf/tools/idf.py build
- cp build/flash_project_args build/download.config
# - make print_flash_cmd | tail -n 1 > build/download.config
# - make factory_bin
push_master_to_github:
stage: deploy
only:
- master
- /^release\/v.*$/
tags:
- deploy
when: on_success
image: $CI_DOCKER_REGISTRY/esp32-ci-env
variables:
GIT_STRATEGY: clone
GITHUB_PUSH_REFS: refs/remotes/origin/release refs/remotes/origin/master
script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GH_PUSH_KEY > ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git remote add github [email protected]:espressif/esp32-at.git
# - git push --follow-tags github HEAD:master
- eval $(git for-each-ref --shell bash --format 'if [ $CI_COMMIT_SHA == %(objectname) ]; then git checkout -B %(refname:strip=3); git push --follow-tags github %(refname:strip=3); fi;' $GITHUB_PUSH_REFS)
esp32_demo:
stage: build
image: $CI_DOCKER_REGISTRY/esp32-ci-env
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_esp32_default/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_esp32_default/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/idf/esp-idf.git
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
- time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- cd examples/at_http_webserver
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP32
- export ESP_AT_MODULE_NAME=WROOM-32
- export ESP_AT_PROJECT_PATH=$(pwd)/../..
- make defconfig
- make -j8
- unset ESP_AT_PROJECT_PLATFORM
- unset ESP_AT_MODULE_NAME
- unset ESP_AT_PROJECT_PATH
- cd -
- cd examples/at_sdio_host
- make defconfig
- make -j8
- cd -
- cd examples/at_sdspi_host/ESP32
- make defconfig
- make -j8
- cd -
wrover32_all_function_at:
stage: build
image: $CI_DOCKER_REGISTRY/esp32-ci-env
tags:
- build
variables:
IDF_PATH: "$CI_PROJECT_DIR/esp-idf"
GIT_STRATEGY: clone
artifacts:
paths:
- build/*.bin
- build/*.elf
- build/*.map
- build/bootloader/*.bin
- build/partition_table/*.bin
- build/customized_partitions/*.bin
- build/flasher_args.json
- build/download.config
- build/factory/*
expire_in: 6 mos
before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo -n $GITLAB_KEY >> ~/.ssh/id_rsa_base64
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git submodule update --init --recursive
script:
- cd main
- rm -f at_config.h
- echo -e "#ifndef __AT_CONFIG_H__" >> at_config.h
- echo -e "#define __AT_CONFIG_H__" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROOM32 \"$AT_OTA_TOKEN_WROOM32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_WROVER32 \"$AT_OTA_TOKEN_WROVER32\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_PICO_D4 \"$AT_OTA_TOKEN_ESP32_PICO_D4\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#define CONFIG_ESP_AT_OTA_SSL_TOKEN_ESP32_SOLO_1 \"$AT_OTA_TOKEN_ESP32_SOLO_1\"" >> at_config.h
- echo -e "#endif" >> at_config.h
- cd -
- echo -e "CONFIG_AT_BT_COMMAND_SUPPORT=y" >> module_config/module_wrover-32/sdkconfig.defaults
- echo -e "CONFIG_AT_FS_COMMAND_SUPPORT=y" >> module_config/module_wrover-32/sdkconfig.defaults
- echo -e "CONFIG_AT_ETHERNET_SUPPORT=n" >> module_config/module_wrover-32/sdkconfig.defaults
- echo -e "CONFIG_AT_EAP_COMMAND_SUPPORT=y" >> module_config/module_wrover-32/sdkconfig.defaults
- echo -e "CONFIG_AT_MQTT_COMMAND_SUPPORT=y" >> module_config/module_wrover-32/sdkconfig.defaults
- echo -e "CONFIG_AT_HTTP_COMMAND_SUPPORT=y" >> module_config/module_wrover-32/sdkconfig.defaults
- sed -i '/ota_1/d' module_config/module_wrover-32/partitions_at.csv
- old_size_str=`cat module_config/module_wrover-32/partitions_at.csv | grep ota_0 | awk -F, '{print $5}'`
- let old_value=$old_size_str
- new_value=`expr $old_value + $old_value`
- new_size_str=`printf "0x%x" ${new_value}`
- sed -i '/ota_0/s/'$old_size_str'/'$new_size_str'/g' module_config/module_wrover-32/partitions_at.csv
# replace submodule esp-idf to internal repository to speedup cloning
- commit_str=$(awk '/commit:/{print $0}' module_config/module_wrover-32/IDF_VERSION)
- branch_str=$(awk '/branch:/{print $0}' module_config/module_wrover-32/IDF_VERSION)
- git clone -b ${branch_str#*branch:} ${GITLAB_SSH_SERVER}/idf/esp-idf.git
- cd esp-idf
- git checkout ${commit_str#*commit:}
# (the same regular expressions are used to set these are used in 'only:' sections below
- source ./tools/ci/configure_ci_environment.sh
# fetch the submodules (& if necessary re-fetch repo) from gitlab
- time ./tools/ci/get-full-sources.sh
- git submodule update --init
- cd -
- export ESP_AT_PROJECT_PLATFORM=PLATFORM_ESP32
- export ESP_AT_MODULE_NAME=WROVER-32
- export ESP_AT_PROJECT_PATH=$(pwd)
- ./esp-idf/tools/idf.py build
- cp build/flash_project_args build/download.config
# - make print_flash_cmd | tail -n 1 > build/download.config
# - make factory_bin