File tree Expand file tree Collapse file tree 8 files changed +15
-15
lines changed Expand file tree Collapse file tree 8 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -83,12 +83,12 @@ jobs:
83
83
run : |
84
84
set -e -x
85
85
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
87
87
88
88
- name : Run Android build
89
89
run : |
90
90
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
92
92
93
93
- name : Enable KVM group perms so Android emulator can run
94
94
run : |
Original file line number Diff line number Diff line change 77
77
run : |
78
78
set -e -x
79
79
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
82
82
83
83
- name : Install the python wheel and test dependencies
84
84
run : |
Original file line number Diff line number Diff line change 46
46
run : |
47
47
set -e -x
48
48
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
51
51
52
52
- name : Install the python wheel and test dependencies
53
53
run : |
Original file line number Diff line number Diff line change 61
61
62
62
- name : Build with CMake
63
63
run : |
64
- cmake --build --preset macos_arm64_cpu_release --parallel
64
+ cmake --build --preset macos_arm64_cpu_release --parallel -DUSE_GUIDANCE=ON
65
65
continue-on-error : false
66
66
67
67
- name : Install the python wheel and test dependencies
Original file line number Diff line number Diff line change @@ -75,11 +75,11 @@ jobs:
75
75
run : |
76
76
python -m pip install wheel requests
77
77
78
- cmake --preset windows_arm64_cpu_release
78
+ cmake --preset windows_arm64_cpu_release -DUSE_GUIDANCE=ON
79
79
80
80
- name : Build with CMake
81
81
run : |
82
- cmake --build --preset windows_arm64_cpu_release --parallel
82
+ cmake --build --preset windows_arm64_cpu_release --parallel -DUSE_GUIDANCE=ON
83
83
84
84
- name : Install the Python Wheel and Test Dependencies
85
85
run : |
Original file line number Diff line number Diff line change @@ -85,11 +85,11 @@ jobs:
85
85
86
86
- name : Configure CMake
87
87
run : |
88
- cmake --preset windows_x64_cpu_release
88
+ cmake --preset windows_x64_cpu_release -DUSE_GUIDANCE=ON
89
89
90
90
- name : Build with CMake
91
91
run : |
92
- cmake --build --preset windows_x64_cpu_release --parallel
92
+ cmake --build --preset windows_x64_cpu_release --parallel -DUSE_GUIDANCE=ON
93
93
94
94
- name : Install the python wheel and test dependencies
95
95
run : |
Original file line number Diff line number Diff line change @@ -70,11 +70,11 @@ jobs:
70
70
71
71
- name : Configure CMake
72
72
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
74
74
75
75
- name : Build with CMake
76
76
run : |
77
- cmake --build --preset windows_x64_cuda_release --parallel
77
+ cmake --build --preset windows_x64_cuda_release --parallel -DUSE_GUIDANCE=ON
78
78
79
79
- name : Add CUDA to PATH
80
80
run : |
Original file line number Diff line number Diff line change @@ -87,11 +87,11 @@ jobs:
87
87
88
88
- name : Configure CMake
89
89
run : |
90
- cmake --preset windows_x64_directml_release -DTEST_PHI2=False
90
+ cmake --preset windows_x64_directml_release -DTEST_PHI2=False -DUSE_GUIDANCE=ON
91
91
92
92
- name : Build with CMake
93
93
run : |
94
- cmake --build --preset windows_x64_directml_release --parallel
94
+ cmake --build --preset windows_x64_directml_release --parallel -DUSE_GUIDANCE=ON
95
95
96
96
- name : Install the Python Wheel and Test Dependencies
97
97
run : |
You can’t perform that action at this time.
0 commit comments