Skip to content

msvc CI build fix3

msvc CI build fix3 #20

Workflow file for this run

# basic testing with Microsoft compiler
# uses this: https://github.com/TheMrMilchmann/setup-msvc-dev
# see here for MSVC CL.EXE options: (link ok on 2023-07-04)
# https://learn.microsoft.com/en-us/cpp/build/reference/compiler-options?view=msvc-170
name: CI-testing-msvc
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
job3:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup MSVC Developer Command Prompt
uses: TheMrMilchmann/[email protected]
with:
arch: x64
- run: cd
- run: systeminfo
- run: dir
- name: get boost
run: curl https://boostorg.jfrog.io/artifactory/main/release/1.82.0/source/boost_1_82_0.zip -O -J -L
- run: dir
- name: unzip boost
run: unzip boost_1_82_0.zip
- run: dir
- name: run msvc
run: cl /EHsc /I boost_1_82_0/ /showIncludes demo/sample_1.cpp