From 67dccd0b65db810e21521a2c2ad37419fcbbb159 Mon Sep 17 00:00:00 2001 From: Will Sobel Date: Thu, 29 May 2025 13:13:42 -0400 Subject: [PATCH 1/2] Docker now uses alpine and arm/amd builds. --- .github/workflows/build-docker-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index cd06c3f64..533be91cd 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -16,11 +16,11 @@ name: Build Docker image env: - PLATFORMS: linux/amd64 # ,linux/arm64 + PLATFORMS: linux/amd64,linux/arm64 # when to run workflow on: - # # run on push or pull request events for the master branch + # # run on push or pull tags request events for the master branch push: tags: - "v*.*.*" @@ -41,7 +41,7 @@ jobs: max-parallel: 1 matrix: include: - - dockerfile: docker/ubuntu/Dockerfile + - dockerfile: docker/alpine/Dockerfile name: agent # - dockerfile: demo/Dockerfile # name: demo From acdb4a41950a0fb4e8e30bba0c7f4aef73b4723d Mon Sep 17 00:00:00 2001 From: Will Sobel Date: Thu, 29 May 2025 20:58:51 -0400 Subject: [PATCH 2/2] Version 2.5.0.7 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b1184ec3c..aac50d17c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ set(AGENT_VERSION_MAJOR 2) set(AGENT_VERSION_MINOR 5) set(AGENT_VERSION_PATCH 0) -set(AGENT_VERSION_BUILD 6) +set(AGENT_VERSION_BUILD 7) set(AGENT_VERSION_RC "") # This minimum version is to support Visual Studio 2019 and C++ feature checking and FetchContent