Skip to content

Commit c6de734

Browse files
committed
win paths
1 parent a8c4f86 commit c6de734

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/cmake-find-windows.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,28 @@ jobs:
3131
- name: Create build and install dirs
3232
shell: bash
3333
run: |
34-
cmake -E make_directory ${{runner.workspace}}\build-highs-${{matrix.branch}}
35-
cmake -E make_directory ${{runner.workspace}}\install-highs-${{matrix.branch}}
36-
cmake -E make_directory ${{runner.workspace}}\build-find-highs-${{matrix.branch}}
37-
cmake -E make_directory ${{runner.workspace}}\install-find-highs-${{matrix.branch}}
34+
cmake -E make_directory ${{runner.workspace}}/build-highs-${{matrix.branch}}
35+
cmake -E make_directory ${{runner.workspace}}/install-highs-${{matrix.branch}}
36+
cmake -E make_directory ${{runner.workspace}}/build-find-highs-${{matrix.branch}}
37+
cmake -E make_directory ${{runner.workspace}}/install-find-highs-${{matrix.branch}}
3838
3939
- name: Configure CMake HiGHS
4040
shell: bash
41-
working-directory: ${{runner.workspace}}\build-highs-${{matrix.branch}}
41+
working-directory: ${{runner.workspace}}/build-highs-${{matrix.branch}}
4242
run: |
4343
cmake ${{runner.workspace}}/highs-tests/HiGHS-${{matrix.branch}} \
4444
-DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/install-highs-${{matrix.branch}}
4545
4646
- name: Build, ctest and install HiGHS
47-
working-directory: ${{runner.workspace}}\build-highs-${{matrix.branch}}
47+
working-directory: ${{runner.workspace}}/build-highs-${{matrix.branch}}
4848
shell: bash
4949
run: |
5050
cmake --build . --parallel --config Release
5151
ctest -C Release
5252
cmake --install .
5353
5454
- name: Build CMakeFindHighsPackage
55-
working-directory: ${{runner.workspace}}\build-find-highs-${{matrix.branch}}
55+
working-directory: ${{runner.workspace}}/build-find-highs-${{matrix.branch}}
5656
shell: bash
5757
run: |
5858
cmake ${{runner.workspace}}/highs-tests/CMakeHighsFindPackage-master-${{matrix.branch}} \
@@ -62,13 +62,13 @@ jobs:
6262
cmake --install .
6363
6464
- name: Test build
65-
working-directory: ${{runner.workspace}}\build-find-highs-${{matrix.branch}}
65+
working-directory: ${{runner.workspace}}/build-find-highs-${{matrix.branch}}
6666
shell: bash
6767
run: |
6868
./main.exe
6969
7070
- name: Test install
71-
working-directory: ${{runner.workspace}}\install-find-highs-${{matrix.branch}}
71+
working-directory: ${{runner.workspace}}/install-find-highs-${{matrix.branch}}
7272
shell: bash
7373
run: |
7474
./bin/Release/main.exe

0 commit comments

Comments
 (0)