Skip to content
Draft
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
4 changes: 3 additions & 1 deletion build/fbcode_builder/manifests/python
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
name = python

[homebrew]
python@3.8
# python 3.12 on brew doesn't install all the symlinks.
# 3.13 does but our pyo3 is too old for it
python@3.11

[rpms]
python3
Expand Down
2 changes: 1 addition & 1 deletion build/fbcode_builder/manifests/sapling
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fb303
fbthrift
rust-shed

[dependencies.test=on]
[dependencies.all(test=on,not(os=darwin))]
hexdump

[dependencies.not(os=windows)]
Expand Down
3 changes: 1 addition & 2 deletions eden/scm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ COMPILERFLAG_tmp_${COMPILER} ?= -c $(COMPILER)
COMPILERFLAG=${COMPILERFLAG_tmp_${COMPILER}}

MAKE_PID := $(shell echo $$PPID)
JOBS := $(shell ps T | sed -n 's%.*$(MAKE_PID).*$(MAKE).* \(-j\|--jobs=\) *\([0-9][0-9]*\).*%\2%p')
JOBS := $(shell ps T | sed -n -Ee 's%.*$(MAKE_PID).*$(MAKE).* (-j|--jobs=) *([0-9][0-9]*).*%\2%p')

# Mac Big Sur doesn't find the standard library without this.
export SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
Expand Down Expand Up @@ -259,7 +259,6 @@ test-getdeps:
fi; \
$$PYTHON_SYS_EXECUTABLE run-tests.py -j $(JOBS) --getdeps-build --with-hg="$(PREFIX)/bin/$(HGNAME)" $$GETDEPS_TEST_FILTER; \
status=$$?; \
# stop if all good \
if [ $$status = 0 ]; then echo "passed on try $$try"; exit 0; fi; \
done; \
exit $$status
Expand Down