Skip to content

Commit e46aac2

Browse files
jvoisinderSteFfi
authored andcommitted
Don't build tcg on fedora, as bazel5 isn't available there
1 parent 027f9e4 commit e46aac2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/all.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ jobs:
8383
# fg: crashes redis server
8484
# pa: python3: can't open file '/__w/mimalloc-bench/mimalloc-bench/extern/pa/partition_alloc_builder/tools/rust/update_rust.py': [Errno 2] No such file or directory
8585
# lp: /__w/mimalloc-bench/mimalloc-bench/extern/lp/Source/bmalloc/libpas/src/libpas/pas_thread_local_cache.c:218:22: error: call to undeclared function 'pthread_getname_np'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
86-
run: ./build-bench-env.sh all no-lean no-mi no-mesh no-nomesh no-gd no-rp no-lf no-fg no-pa no-lp no-sh8
86+
# tcg: https://github.com/bazelbuild/bazel/issues/19295 bazel5 is required but unavailable
87+
run: ./build-bench-env.sh all no-lean no-mi no-mesh no-nomesh no-gd no-rp no-lf no-fg no-pa no-lp no-sh8 no-tcg
8788
- name: Run everything.
8889
run: |
8990
cd out/bench

build-bench-env.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,8 @@ if test "$setup_packages" = "1"; then
442442
dnfinstall "gcc-c++ clang lld llvm-devel unzip dos2unix bc gmp-devel wget gawk \
443443
cmake python3 ruby ninja-build libtool autoconf git patch time sed \
444444
ghostscript libatomic which gflags-devel xz readline-devel snappy-devel"
445-
dnfinstallbazel
445+
# bazel5 is broken on the copr: https://github.com/bazelbuild/bazel/issues/19295
446+
#dnfinstallbazel
446447
elif grep -q -e 'ID=debian' -e 'ID=ubuntu' /etc/os-release 2>/dev/null; then
447448
echo "updating package database... ($SUDO apt update)"
448449
$SUDO apt update -qq

0 commit comments

Comments
 (0)