Skip to content

Commit db78468

Browse files
committed
fetch linux and find windows bash
1 parent 3b38b12 commit db78468

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/cmake-fetch-linux.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
cmake ${{runner.workspace}}/highs-tests/CMakeHighsFetchContent-main-${{matrix.branch}} \
3333
-DBRANCH=${{matrix.branch}} \
34-
-DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/install-fetch-highs-${{matrix.branch}}
34+
-DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/install-fetch-${{matrix.branch}}
3535
cmake --build . --parallel
3636
3737
- name: Test
@@ -41,4 +41,7 @@ jobs:
4141
./main
4242
4343
- name: Test install
44-
# trigger test
44+
working-directory: ${{runner.workspace}}/install-fetch-${{matrix.branch}}
45+
shell: bash
46+
run: |
47+
./bin/main

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: cmake-find-macos
33
on: [push, pull_request]
44

55
jobs:
6-
ubuntu:
6+
macos:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
fail-fast: false

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: cmake-find-windows
33
on: [push, pull_request]
44

55
jobs:
6-
ubuntu:
6+
windows:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
fail-fast: false
@@ -29,6 +29,7 @@ jobs:
2929
path: CMakeHighsFindPackage-master-${{matrix.branch}}
3030

3131
- name: Create build and install dirs
32+
shell: bash
3233
run: |
3334
cmake -E make_directory ${{runner.workspace}}/build-highs-${{matrix.branch}}
3435
cmake -E make_directory ${{runner.workspace}}/install-highs-${{matrix.branch}}

0 commit comments

Comments
 (0)