Skip to content

Commit 8ec5025

Browse files
committed
updated pipeline
1 parent 8b133f5 commit 8ec5025

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/main.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -51,29 +51,29 @@ jobs:
5151
MSVC:
5252
runs-on: windows-latest
5353
steps:
54-
- name: Checkout code
54+
- name: checkout repo
5555
uses: actions/checkout@v2
56-
- name: Set up Python
56+
- name: set up Python
5757
uses: actions/setup-python@v2
5858
with:
5959
python-version: '3.12'
60-
- name: Install pip tools
60+
- name: install pip tools
6161
run: |
6262
python -m pip install --upgrade pip
6363
pip install cmake conan
64-
- name: Conan
64+
- name: conan
6565
run: |
6666
conan --version
6767
conan profile detect
6868
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"
6969
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"
7070
conan profile show
71-
- name: Build
71+
- name: build
7272
run: |
7373
conan install . -of build --build missing
7474
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=".\build\conan_toolchain.cmake" -DMSVC_STATIC=ON
7575
cmake --build ./build --config Release -j12
76-
- name: Unittests
76+
- name: unittests
7777
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

0 commit comments

Comments
 (0)