From ec7951afd547277da702a050ee486c3db4e610d3 Mon Sep 17 00:00:00 2001 From: Snider Date: Thu, 2 Oct 2025 00:59:47 +0100 Subject: [PATCH] Update Docker build env and MSVC C++ standard Set DOCKER_BUILD_SUMMARY and DOCKER_BUILD_RECORD_UPLOAD to false in the GitHub Actions workflow to control Docker build output. Update MSVC profile to use C++17 instead of C++14 for improved language features and compatibility. --- .github/workflows/build-docker.yml | 3 +++ cmake/profiles/msvc-194-x86_64 | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml index 1c235a82..53e63e03 100644 --- a/.github/workflows/build-docker.yml +++ b/.github/workflows/build-docker.yml @@ -39,6 +39,9 @@ jobs: - name: Build and push id: docker_build uses: docker/build-push-action@v6 + env: + DOCKER_BUILD_SUMMARY: false + DOCKER_BUILD_RECORD_UPLOAD: false with: file: utils/docker/images/lthn-chain/Dockerfile context: ${{ github.workspace }} diff --git a/cmake/profiles/msvc-194-x86_64 b/cmake/profiles/msvc-194-x86_64 index 64acd970..d969128c 100644 --- a/cmake/profiles/msvc-194-x86_64 +++ b/cmake/profiles/msvc-194-x86_64 @@ -1,7 +1,7 @@ [settings] arch=x86_64 compiler=msvc -compiler.cppstd=14 +compiler.cppstd=17 compiler.runtime=static compiler.version=194 os=Windows