forked from lthn/blockchain
testing msvc-193
This commit is contained in:
parent
e8e2118784
commit
ba4b5f4eca
2 changed files with 38 additions and 1 deletions
29
.github/workflows/build-windows.yml
vendored
29
.github/workflows/build-windows.yml
vendored
|
|
@ -11,7 +11,7 @@ on:
|
|||
type: string
|
||||
|
||||
jobs:
|
||||
build:
|
||||
msvc-194:
|
||||
name: msvc-194-x86_64
|
||||
runs-on: windows-2022
|
||||
steps:
|
||||
|
|
@ -37,3 +37,30 @@ jobs:
|
|||
assets: lethean-*
|
||||
asset-type: 'cli'
|
||||
asset-directory: ${{ github.workspace }}/build/msvc-194-x86_64/src/Release
|
||||
|
||||
msvc-193:
|
||||
name: msvc-194-x86_64
|
||||
runs-on: windows-2022
|
||||
steps:
|
||||
- name: Checkout Project
|
||||
uses: actions/checkout@v4.2.2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: recursive
|
||||
|
||||
- name: Install Conan
|
||||
uses: conan-io/setup-conan@v1
|
||||
with:
|
||||
home: ${{ github.workspace }}/build/sdk
|
||||
cache_packages: true
|
||||
|
||||
- name: Compile Release
|
||||
run: make msvc-193-x86_64 TESTNET=${{ inputs.chain-network == 'testnet' && '1' || '0' }}
|
||||
|
||||
- name: CLI Artifacts
|
||||
uses: ./.github/actions/upload-artifacts
|
||||
with:
|
||||
chain-network: ${{ inputs.chain-network }}
|
||||
assets: lethean-*
|
||||
asset-type: 'cli'
|
||||
asset-directory: ${{ github.workspace }}/build/msvc-193-x86_64/src/Release
|
||||
|
|
|
|||
10
cmake/profiles/msvc-193-x86_64
Normal file
10
cmake/profiles/msvc-193-x86_64
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
[settings]
|
||||
arch=x86_64
|
||||
compiler=msvc
|
||||
compiler.cppstd=17
|
||||
compiler.runtime=static
|
||||
compiler.version=193
|
||||
os=Windows
|
||||
|
||||
[conf]
|
||||
tools.cmake.cmaketoolchain:user_presets=False
|
||||
Loading…
Add table
Reference in a new issue