1
0
Fork 0
forked from lthn/blockchain

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.
This commit is contained in:
Snider 2025-10-02 00:59:47 +01:00
parent 9290ec794f
commit ec7951afd5
2 changed files with 4 additions and 1 deletions

View file

@ -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 }}

View file

@ -1,7 +1,7 @@
[settings]
arch=x86_64
compiler=msvc
compiler.cppstd=14
compiler.cppstd=17
compiler.runtime=static
compiler.version=194
os=Windows