Skip to content

Commit a3c2185

Browse files
committed
openblas and build dir
1 parent 49694e2 commit a3c2185

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

.github/workflows/hipo-win-conda-forge.yml

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,36 +39,37 @@ jobs:
3939
run: |
4040
conda install -y -c conda-forge metis
4141
42-
# - name: Install OpenBLAS
43-
# run: vcpkg install openblas
42+
- name: Install OpenBLAS
43+
run: |
44+
conda install -y -c conda-forge openblas
4445
45-
# - name: Create build dir
46-
# run: cmake -E make_directory ${{runner.workspace}}/build
46+
- name: Create build dir
47+
shell: bash
48+
run: cmake -E make_directory ${{runner.workspace}}/build
4749

4850
- name: Configure cmake
4951
shell: bash
5052
working-directory: ${{runner.workspace}}/build
5153
run: |
5254
cmake $GITHUB_WORKSPACE \
53-
-DHIPO=ON \
54-
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
55+
-DHIPO=ON
5556
56-
# - name: Build
57-
# shell: bash
58-
# working-directory: ${{runner.workspace}}/build
59-
# run: |
60-
# cmake --build . --parallel --config Release
57+
- name: Build
58+
shell: bash
59+
working-directory: ${{runner.workspace}}/build
60+
run: |
61+
cmake --build . --parallel --config Release
6162
62-
# - name: Test executable
63-
# shell: bash
64-
# working-directory: ${{runner.workspace}}/build
65-
# run: ./Release/bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
63+
- name: Test executable
64+
shell: bash
65+
working-directory: ${{runner.workspace}}/build
66+
run: ./Release/bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
6667

67-
# - name: Ctest
68-
# shell: bash
69-
# working-directory: ${{runner.workspace}}/build
70-
# run: |
71-
# ctest --parallel --timeout 300 --output-on-failure -C Release
68+
- name: Ctest
69+
shell: bash
70+
working-directory: ${{runner.workspace}}/build
71+
run: |
72+
ctest --parallel --timeout 300 --output-on-failure -C Release
7273
7374
# debug:
7475
# runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)