Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ info --platforms=@platforms//host

common --platforms=@mojo_host_platform
common --host_platform=@mojo_host_platform

# HACK: Github Action runners using AMD EPYC CPUs have AVX512 disabled.
# Mojo will happily generate those instructions, but then they crash at runtime.
# Totally disable AVX512 to circumvent the issue.
common:ci --//:mojo_copt=--target-features=-avx512f,-avx512bw,-avx512cd,-avx512dq,-avx512vl,-avx512ifma,-avx512vbmi,-avx512vbmi2,-avx512vnni,-avx512bitalg,-avx512vpopcntdq,-avx512fp16,-avx512bf16
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,7 @@ jobs:
run: |
bazel version
bazel info
- run: bazel test //...
- name: CPU Info
run: |
lscpu || true
- run: bazel test --config=ci //...
Loading