Skip to content

Commit 12254d7

Browse files
committed
fix: don't build yara-x-py in 32-bits.
1 parent 491af71 commit 12254d7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ jobs:
6161
os: ubuntu-latest
6262
rust: stable
6363
target: i686-unknown-linux-gnu
64-
args: ""
64+
# yara-x-py is excluded because the Python version installed in the
65+
# host is 64-bits, but the YARA-X library is 32-bits.
66+
args: "--features=rules-profiling --workspace --exclude=yara-x-py"
6567
rust_flags: "-Awarnings"
6668
experimental: false
6769

@@ -77,7 +79,9 @@ jobs:
7779
os: windows-latest
7880
rust: stable
7981
target: i686-pc-windows-msvc
80-
args: "--features=rules-profiling"
82+
# yara-x-py is excluded because the Python version installed in the
83+
# host is 64-bits, but the YARA-X library is 32-bits.
84+
args: "--features=rules-profiling --workspace --exclude=yara-x-py"
8185
rust_flags: "-Awarnings"
8286
experimental: false
8387

0 commit comments

Comments
 (0)