ci : disable native builds for some jobs

This commit is contained in:
Georgi Gerganov
2026-09-01 09:56:36 +03:00
parent 0eadefebd3
commit f32615d176
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -68,7 +68,6 @@ jobs:
hf_bucket: ggml-org/cache
- name: Build with CMake
# TODO: Remove GGML_CUDA_CUB_3DOT2 flag once CCCL 3.2 is bundled within CTK and that CTK version is used in this project
run: |
cmake -S . -B build -G Ninja \
-DLLAMA_FATAL_WARNINGS=ON \
@@ -128,6 +127,7 @@ jobs:
cmake -B build -S . \
-DCMAKE_HIP_COMPILER="$(hipconfig -l)/clang" \
-DGPU_TARGETS="gfx1030" \
-DGGML_NATIVE=OFF \
-DGGML_HIP=ON
cmake --build build --config Release -j $(nproc)
@@ -177,6 +177,7 @@ jobs:
id: cmake_build
run: |
cmake -B build -S . \
-DGGML_NATIVE=OFF \
-DGGML_MUSA=ON
time cmake --build build --config Release -j $(nproc)
+2
View File
@@ -64,6 +64,7 @@ jobs:
cmake -B build -S . \
-DCMAKE_HIP_COMPILER="$(hipconfig -l)/clang" \
-DGPU_TARGETS=gfx942 \
-DGGML_NATIVE=OFF \
-DGGML_HIP=ON \
-DGGML_HIP_EXPORT_METRICS=Off \
-DCMAKE_HIP_FLAGS="-Werror -Wno-tautological-compare" \
@@ -77,6 +78,7 @@ jobs:
cmake -B build -S . \
-DCMAKE_HIP_COMPILER="$(hipconfig -l)/clang" \
-DGPU_TARGETS=gfx908 \
-DGGML_NATIVE=OFF \
-DGGML_HIP=ON \
-DGGML_HIP_EXPORT_METRICS=On \
-DCMAKE_HIP_FLAGS="" \