File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -51,29 +51,29 @@ jobs:
51
51
MSVC :
52
52
runs-on : windows-latest
53
53
steps :
54
- - name : Checkout code
54
+ - name : checkout repo
55
55
uses : actions/checkout@v2
56
- - name : Set up Python
56
+ - name : set up Python
57
57
uses : actions/setup-python@v2
58
58
with :
59
59
python-version : ' 3.12'
60
- - name : Install pip tools
60
+ - name : install pip tools
61
61
run : |
62
62
python -m pip install --upgrade pip
63
63
pip install cmake conan
64
- - name : Conan
64
+ - name : conan
65
65
run : |
66
66
conan --version
67
67
conan profile detect
68
68
powershell -Command "(gc C:\Users\runneradmin\.conan2\profiles\default) -replace 'compiler.cppstd=14', 'compiler.cppstd=20' | Out-File -encoding ASCII C:\Users\runneradmin\.conan2\profiles\default"
69
69
powershell -Command "(gc C:\Users\runneradmin\.conan2\profiles\default) -replace 'compiler.runtime=dynamic', 'compiler.runtime=static' | Out-File -encoding ASCII C:\Users\runneradmin\.conan2\profiles\default"
70
70
conan profile show
71
- - name : Build
71
+ - name : build
72
72
run : |
73
73
conan install . -of build --build missing
74
74
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=".\build\conan_toolchain.cmake" -DMSVC_STATIC=ON
75
75
cmake --build ./build --config Release -j12
76
- - name : Unittests
76
+ - name : unittests
77
77
run : .\build\bin\Release\unittests.exe
78
- - name : Example
79
- run : .\build\bin\Release\example.exe
78
+ - name : example
79
+ run : .\build\bin\Release\example.exe ./examples
You can’t perform that action at this time.
0 commit comments