Mongoose.cloud is broken

Starting yesterday (December 1, 2021), version 2.12.1 (also 2.14.0 and 2.15.0) invoked with mos build through mongoose.cloud has stopped functioning.

All compile attempts result in:
Error: Post https://mongoose.cloud/api/fwbuild/2.12.1/build: dial tcp 88.198.37.49:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

I upgraded to version 2.19.1 (which accesses the cloud compiler through build.mongoose-os.com). Compilation occurs, but this version fails to find esp_adc_cal.h If I include esp_adc_cal.h in my src folder, linking fails to find the functions associated with esp_adc_cal.h (the same code worked seamlessly in 2.12.1 prior to 12/1/2021).

Any one else seeing this? What to do?

Thanks for your help,

JSW

A lot has changed between 2.12.1 and 2.19.1. 2.19.1 uses esp-if 4.2-r1
You need to add to your build_vars

ESP_IDF_EXTRA_COMPONENTS: "${build_vars.ESP_IDF_EXTRA_COMPONENTS} esp_adc_cal"

This works!

Thanks,

JSW