@@ -509,6 +509,9 @@ jobs:
509
509
- name : run Shadow sample
510
510
run : |
511
511
python3 ${{ env.CI_UTILS_FOLDER }}/run_sample_ci.py --file ${{ env.CI_SAMPLES_CFG_FOLDER }}/ci_run_shadow_cfg.json
512
+ - name : run Mqtt5 Shadow sample
513
+ run : |
514
+ python3 ${{ env.CI_UTILS_FOLDER }}/run_sample_ci.py --file ${{ env.CI_SAMPLES_CFG_FOLDER }}/ci_run_shadow_mqtt5_cfg.json
512
515
- name : configure AWS credentials (Jobs)
513
516
uses : aws-actions/configure-aws-credentials@v1
514
517
with :
@@ -517,6 +520,9 @@ jobs:
517
520
- name : run Jobs sample
518
521
run : |
519
522
python3 ${{ env.CI_UTILS_FOLDER }}/run_sample_ci.py --file ${{ env.CI_SAMPLES_CFG_FOLDER }}/ci_run_jobs_cfg.json
523
+ - name : run Mqtt5 Jobs sample
524
+ run : |
525
+ python3 ${{ env.CI_UTILS_FOLDER }}/run_sample_ci.py --file ${{ env.CI_SAMPLES_CFG_FOLDER }}/ci_run_jobs_mqtt5_cfg.json
520
526
- name : configure AWS credentials (Fleet provisioning)
521
527
uses : aws-actions/configure-aws-credentials@v1
522
528
with :
@@ -528,6 +534,12 @@ jobs:
528
534
Sample_UUID=$(python3 -c "import uuid; print (uuid.uuid4())")
529
535
python3 ${{ env.CI_UTILS_FOLDER }}/run_sample_ci.py --file ${{ env.CI_SAMPLES_CFG_FOLDER }}/ci_run_fleet_provisioning_cfg.json --input_uuid ${Sample_UUID}
530
536
python3 ${{ env.CI_UTILS_FOLDER }}/delete_iot_thing_ci.py --thing_name "Fleet_Thing_${Sample_UUID}" --region "us-east-1"
537
+ - name : run Mqtt5 Fleet Provisioning sample
538
+ run : |
539
+ echo "Generating UUID for IoT thing"
540
+ Sample_UUID=$(python3 -c "import uuid; print (uuid.uuid4())")
541
+ python3 ${{ env.CI_UTILS_FOLDER }}/run_sample_ci.py --file ${{ env.CI_SAMPLES_CFG_FOLDER }}/ci_run_fleet_provisioning_mqtt5_cfg.json --input_uuid ${Sample_UUID}
542
+ python3 ${{ env.CI_UTILS_FOLDER }}/delete_iot_thing_ci.py --thing_name "Fleet_Thing_${Sample_UUID}" --region "us-east-1"
531
543
- name : configure AWS credentials (Secure tunneling)
532
544
uses : aws-actions/configure-aws-credentials@v1
533
545
with :
0 commit comments