Skip to content

Commit 3ed7c72

Browse files
committed
use hipo for cpack
1 parent 404811d commit 3ed7c72

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/release-cpack.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
run: |
2222
if [ "${{ matrix.arch }}" == "arm64" ]; then
2323
cmake -B build -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc \
24-
-DCMAKE_CXX_COMPILER=aarch64-linux-gnu-g++
24+
-DCMAKE_CXX_COMPILER=aarch64-linux-gnu-g++ \
25+
-DHIPO=ON -DBUILD_OPENBLAS=ON
2526
else
2627
cmake -B build
2728
fi
@@ -42,7 +43,8 @@ jobs:
4243
- uses: actions/checkout@v3
4344
- name: Build
4445
run: |
45-
cmake -B build -G "Visual Studio 17 2022" -A ${{ matrix.arch }}
46+
cmake -B build -G "Visual Studio 17 2022" -A ${{ matrix.arch }} \
47+
-DHIPO=ON -DBUILD_OPENBLAS=ON
4648
cmake --build build --config Release
4749
cd build
4850
cpack -C Release
@@ -61,7 +63,8 @@ jobs:
6163
- uses: actions/checkout@v3
6264
- name: Build
6365
run: |
64-
cmake -B build -G "Visual Studio 17 2022" -A ${{ matrix.arch }}
66+
cmake -B build -G "Visual Studio 17 2022" -A ${{ matrix.arch }} \
67+
-DHIPO=ON -DBUILD_OPENBLAS=ON
6568
cmake --build build --config Release
6669
cd build
6770
cpack -C Release

0 commit comments

Comments
 (0)