Skip to content

Commit 422af28

Browse files
committed
build and test with use_guidance
1 parent c644b26 commit 422af28

8 files changed

+15
-15
lines changed

.github/workflows/android-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ jobs:
8383
run: |
8484
set -e -x
8585
rm -rf build
86-
./build.sh --android --android_api=27 --android_ndk_path=${ANDROID_NDK_LATEST_HOME} --config=RelWithDebInfo --android_abi=${{ env.ANDROID_ABI }} --parallel --build_java --update
86+
./build.sh --android --android_api=27 --android_ndk_path=${ANDROID_NDK_LATEST_HOME} --config=RelWithDebInfo --android_abi=${{ env.ANDROID_ABI }} --parallel --build_java --update --use_guidance
8787
8888
- name: Run Android build
8989
run: |
9090
set -e -x
91-
./build.sh --android --android_api=27 --android_ndk_path=${ANDROID_NDK_LATEST_HOME} --config=RelWithDebInfo --android_abi=${{ env.ANDROID_ABI }} --parallel --build_java --build
91+
./build.sh --android --android_api=27 --android_ndk_path=${ANDROID_NDK_LATEST_HOME} --config=RelWithDebInfo --android_abi=${{ env.ANDROID_ABI }} --parallel --build_java --build --use_guidance
9292
9393
- name: Enable KVM group perms so Android emulator can run
9494
run: |

.github/workflows/linux-cpu-x64-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ jobs:
7777
run: |
7878
set -e -x
7979
rm -rf build
80-
cmake --preset linux_gcc_cpu_release
81-
cmake --build --preset linux_gcc_cpu_release
80+
cmake --preset linux_gcc_cpu_release -DUSE_GUIDANCE=ON
81+
cmake --build --preset linux_gcc_cpu_release -DUSE_GUIDANCE=ON
8282
8383
- name: Install the python wheel and test dependencies
8484
run: |

.github/workflows/linux-cpu-x64-nightly-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646
run: |
4747
set -e -x
4848
rm -rf build
49-
cmake --preset linux_gcc_cpu_release
50-
cmake --build --preset linux_gcc_cpu_release
49+
cmake --preset linux_gcc_cpu_release -DUSE_GUIDANCE=ON
50+
cmake --build --preset linux_gcc_cpu_release -DUSE_GUIDANCE=ON
5151
5252
- name: Install the python wheel and test dependencies
5353
run: |

.github/workflows/mac-cpu-arm64-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
6262
- name: Build with CMake
6363
run: |
64-
cmake --build --preset macos_arm64_cpu_release --parallel
64+
cmake --build --preset macos_arm64_cpu_release --parallel -DUSE_GUIDANCE=ON
6565
continue-on-error: false
6666

6767
- name: Install the python wheel and test dependencies

.github/workflows/win-cpu-arm64-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ jobs:
7575
run: |
7676
python -m pip install wheel requests
7777
78-
cmake --preset windows_arm64_cpu_release
78+
cmake --preset windows_arm64_cpu_release -DUSE_GUIDANCE=ON
7979
8080
- name: Build with CMake
8181
run: |
82-
cmake --build --preset windows_arm64_cpu_release --parallel
82+
cmake --build --preset windows_arm64_cpu_release --parallel -DUSE_GUIDANCE=ON
8383
8484
- name: Install the Python Wheel and Test Dependencies
8585
run: |

.github/workflows/win-cpu-x64-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ jobs:
8585

8686
- name: Configure CMake
8787
run: |
88-
cmake --preset windows_x64_cpu_release
88+
cmake --preset windows_x64_cpu_release -DUSE_GUIDANCE=ON
8989
9090
- name: Build with CMake
9191
run: |
92-
cmake --build --preset windows_x64_cpu_release --parallel
92+
cmake --build --preset windows_x64_cpu_release --parallel -DUSE_GUIDANCE=ON
9393
9494
- name: Install the python wheel and test dependencies
9595
run: |

.github/workflows/win-cuda-x64-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ jobs:
7070
7171
- name: Configure CMake
7272
run: |
73-
cmake --preset windows_x64_cuda_release -T cuda=${{ env.cuda_dir }}\\v${{ env.cuda_version }}
73+
cmake --preset windows_x64_cuda_release -T cuda=${{ env.cuda_dir }}\\v${{ env.cuda_version }} -DUSE_GUIDANCE=ON
7474
7575
- name: Build with CMake
7676
run: |
77-
cmake --build --preset windows_x64_cuda_release --parallel
77+
cmake --build --preset windows_x64_cuda_release --parallel -DUSE_GUIDANCE=ON
7878
7979
- name: Add CUDA to PATH
8080
run: |

.github/workflows/win-directml-x64-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ jobs:
8787
8888
- name: Configure CMake
8989
run: |
90-
cmake --preset windows_x64_directml_release -DTEST_PHI2=False
90+
cmake --preset windows_x64_directml_release -DTEST_PHI2=False -DUSE_GUIDANCE=ON
9191
9292
- name: Build with CMake
9393
run: |
94-
cmake --build --preset windows_x64_directml_release --parallel
94+
cmake --build --preset windows_x64_directml_release --parallel -DUSE_GUIDANCE=ON
9595
9696
- name: Install the Python Wheel and Test Dependencies
9797
run: |

0 commit comments

Comments
 (0)