Ovaar

Software Engineering blog


Read my latest blog posts

Azure pipelines cross-platform python scripting

Azure pipelines cross-platform python scripting This post is a continuation of Azure pipelines cross-platform scripts for Self-Hosted Azure agents. If you’ve missed it make sure to read this first, since we’re going to extend on it. I can hear you think, “but Python is already cross platform … ?”. Yes, though this is going to be about how to setup Azure Pipelines to invoke Python in a cross-platform way. The problem The problem that you’re going to face is that not all Python installations have the same executables python and python3.

published on Thu, 01 Aug 2024

Azure pipelines cross-platform scripts

Azure pipelines cross-platform scripts To keep things simple when setting up a CI/CD pipeline for a cross-platform application we cautiously have to consider our options for running the steps in what scripting language, because we don’t want to end up with scripts that do the same thing functionally, but are different for each platform, which means extra maintenance and complexity for the maintainers. So we have to consider languages like Powershell, Bash, Zsh or Python for to run on Windows, macOS and Linux.

published on Thu, 01 Aug 2024

How to typed command line arguments in python

How to typed command line arguments in python Creating tools with python is a common practice due to its ease of use and productivity. Now python already has good built-in support for parsing command-line arguments, but we can take it one step further. Let’s take the following example where we would like to create a platform independent build script that should be able to accept the build type and an option to rebuild.

published on Mon, 22 Apr 2024