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:
parent
9290ec794f
commit
ec7951afd5
2 changed files with 4 additions and 1 deletions
3
.github/workflows/build-docker.yml
vendored
3
.github/workflows/build-docker.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[settings]
|
||||
arch=x86_64
|
||||
compiler=msvc
|
||||
compiler.cppstd=14
|
||||
compiler.cppstd=17
|
||||
compiler.runtime=static
|
||||
compiler.version=194
|
||||
os=Windows
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue