-
Notifications
You must be signed in to change notification settings - Fork 380
Update pipeline to create/destroy azure resource dynamically #1208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| transport: 'mqtt' | ||
| imageName: 'ubuntu-22.04' | ||
| consumerGroup: 'cg9' | ||
| py312_linux_mqttws: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably need to update these to include Python 3.13 and Python 3.14 - the modern versions people actually use.
I think we can safely delete the commented lines about 3.8 since Azure ended support for 3.8 in April of this year. 3.9 support is dropping in April 2026.
Adding 3.13 and 3.14 could be a follow up, but I'd go ahead and remove the 3.8 lines now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good (some test failures)
copying uamqp/c_uamqp.c -> build/lib.linux-x86_64-cpython-314/uamqp
running build_ext
will build uamqp in build/temp.linux-x86_64-cpython-314/cmake
Building with generator flags: -G "Unix Makefiles"
calling cmake /tmp/pip-install-_kzi19it/uamqp_0ffe901a1b2d40ffba853b801e6f3b79/src/vendor/azure-uamqp-c/ -G "Unix Makefiles" -Duse_openssl:bool=ON -Duse_default_uuid:bool=ON -Duse_builtin_httpapi:bool=ON -Dskip_samples:bool=ON -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE -DCMAKE_BUILD_TYPE=Release
CMake Deprecation Warning at CMakeLists.txt:4 (cmake_minimum_required):
Compatibility with CMake < 3.10 will be removed from a future version of
CMake.
Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
to tell CMake that the project requires at least <min> but has been updated
to work with policies introduced by <max> or earlier.
-- The C compiler identification is GNU 13.3.0
-- The CXX compiler identification is GNU 13.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
CMake Error at deps/azure-macro-utils-c/CMakeLists.txt:4 (cmake_minimum_required):
Compatibility with CMake < 3.5 has been removed from CMake.
Thank you for helping us improve the Azure IoT Python SDK!
Need Support
Here's a little checklist of things that will help it make its way to the repository: Note that you don't have to check all the boxes, we can help you with that.
This being said, the more you do, the quicker it'll go through our gated build!
-->
Checklist
devdocfolder and added or modified requirements.Reference/Link to the issue solved with this PR (if any)
Description of the problem
Pipeline needs to be changed to create azure resources dynamically.
Description of the solution
Implemented scripts to create resources dynamically.