Azure pipelines - ctypes importerror
Fixing ctypes ImportError in Azure Pipelines: Missing _type_ Attribute When running pip install in an Azure Pipelines self-hosted agent, you might encounter the following error: File "~\myselfhostedagent\_work\_tool\Python\3.12.3\x64\Lib\site-packages\pip\_vendor\platformdirs\windows.py",...
Published Fri, 31 Jan 2025
Deploying a Blog with GitHub Actions, Docker, and Submodules
๐ Deploying a Blog with GitHub Actions, Docker, and Submodules ๐ Problem Statement If youโre using GitHub Actions to build and deploy a static blog that: Runs inside Docker Pushes generated content to a GitHub Pages submodule Requires Git authentication to commit and push changes Then, you might run...
Published Fri, 31 Jan 2025
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...
Published 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...
Published Thu, 01 Aug 2024
How to setup docker credential-store
Since docker version 19 it start notifying the user that the docker credentials are stored unencrypted. WARNING! Your password will be stored unencrypted โฆ To solve this we will use the Docker credential-store feature. Ubuntu: docker-credential-pass OSX: osxkeychain Windows: wincred In this blog...
Published Tue, 28 Jul 2020