We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a332eb + c043ee3 commit 68644d9Copy full SHA for 68644d9
.github/workflows/build_macos_x86_wheels.yml
@@ -13,6 +13,11 @@ on:
13
- main
14
paths-ignore:
15
- '**/*.md'
16
+ pull_request:
17
+ branches:
18
+ - main
19
+ paths-ignore:
20
+ - '**/*.md'
21
22
jobs:
23
build_wheels_macos_13:
chdb/build.sh
@@ -31,7 +31,7 @@ if [ "$(uname)" == "Darwin" ]; then
31
CPU_FEATURES="-DENABLE_AVX=0 -DENABLE_AVX2=0"
32
LLVM="-DENABLE_EMBEDDED_COMPILER=0 -DENABLE_DWARF_PARSER=0"
33
else
34
- LLVM="-DENABLE_EMBEDDED_COMPILER=1 -DENABLE_DWARF_PARSER=1"
+ LLVM="-DENABLE_EMBEDDED_COMPILER=0 -DENABLE_DWARF_PARSER=0"
35
# disable AVX on Darwin for macos11
36
if [ "$(sw_vers -productVersion | cut -d. -f1)" -le 11 ]; then
37
0 commit comments