mirror of
https://github.com/facebook/sapling.git
synced 2024-12-28 15:44:27 +03:00
0dd3c4e4bb
Summary: This diff adds a minimal workflow for running integrations tests for Mononoke. Currently only one test is run and it fails. This also splits the regular Mononoke CI into separate files for Linux and Mac to match the current style in Eden repo. There are the "scopeguard::defer" fixes here that somehow escaped the CI tests. Some tweaks have been made to "integration_runner_real.py" to make it runnable outside FB context. Lastly the change from using "[[ -v ... ]" to "[[ -n "${...:-}" ]]; in "library.sh" was made because the former is not supported by the default Bash version preinstalled on modern MacOS. Pull Request resolved: https://github.com/facebookexperimental/eden/pull/26 Reviewed By: krallin Differential Revision: D22541344 Pulled By: lukaspiatkowski fbshipit-source-id: 5023d147823166a8754be852c29b1e7b0e6d9f5f
182 lines
6.0 KiB
Makefile
182 lines
6.0 KiB
Makefile
# Portions Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2.
|
|
|
|
# Copyright Matt Mackall <mpm@selenic.com> and others
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2 or any later version.
|
|
|
|
# If you want to change PREFIX, do not just edit it below. The changed
|
|
# value wont get passed on to recursive make calls. You should instead
|
|
# override the variable on the command like:
|
|
#
|
|
# % make PREFIX=/opt/ install
|
|
|
|
export PREFIX=/usr/local
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
PYTHON := python
|
|
else
|
|
PYTHON := python2
|
|
endif
|
|
PYTHON3 := python3.6
|
|
|
|
$(eval HGROOT := $(shell pwd))
|
|
HGPYTHONS ?= $(HGROOT)/build/pythons
|
|
PURE=
|
|
PYFILES:=$(shell find mercurial hgext -name '*.py' 2>/dev/null)
|
|
DOCFILES=edenscm/mercurial/help/*.txt
|
|
export LANGUAGE=C
|
|
export LC_ALL=C
|
|
TESTFLAGS ?= $(shell echo $$HGTESTFLAGS)
|
|
OSXVERSIONFLAGS ?= $(shell echo $$OSXVERSIONFLAGS)
|
|
|
|
HGNAME ?= hg
|
|
HGNAME3 ?= hg3
|
|
|
|
# Set this to e.g. "mingw32" to use a non-default compiler.
|
|
COMPILER=
|
|
|
|
COMPILERFLAG_tmp_ =
|
|
COMPILERFLAG_tmp_${COMPILER} ?= -c $(COMPILER)
|
|
COMPILERFLAG=${COMPILERFLAG_tmp_${COMPILER}}
|
|
|
|
help:
|
|
@echo 'Commonly used make targets:'
|
|
@echo ' all - build program'
|
|
@echo ' install - install program and man pages to $$PREFIX ($(PREFIX))'
|
|
@echo ' install-home - install with setup.py install --home=$$HOME ($(HOME))'
|
|
@echo ' local - build for inplace usage'
|
|
@echo ' tests - run all tests in the automatic test suite'
|
|
@echo ' test-foo - run only specified tests (e.g. test-merge1.t)'
|
|
@echo ' dist - run all tests and create a source tarball in dist/'
|
|
@echo ' clean - remove files created by other targets'
|
|
@echo ' (except installed files or dist source tarball)'
|
|
@echo ' update-pot - update i18n/hg.pot'
|
|
@echo
|
|
@echo 'Example for a system-wide installation under /usr/local:'
|
|
@echo ' make all && su -c "make install" && hg version'
|
|
@echo
|
|
@echo 'Example for a local installation (usable in this directory):'
|
|
@echo ' make local && ./hg version'
|
|
|
|
all: build
|
|
|
|
local:
|
|
$(PYTHON) setup.py $(PURE) \
|
|
build_py -c -d . \
|
|
build_clib $(COMPILERFLAG) \
|
|
build_ext $(COMPILERFLAG) -i \
|
|
build_rust_ext -i -l $(RFLAG)\
|
|
build_pyzip -i \
|
|
build_mo
|
|
ifeq ($(OS),Windows_NT)
|
|
cp build/scripts-2.7/$(HGNAME).exe $(HGNAME).exe
|
|
else
|
|
$(RM) $(HGNAME)
|
|
cp build/scripts-2.7/$(HGNAME) $(HGNAME)
|
|
endif
|
|
|
|
local3:
|
|
HGNAME=$(HGNAME3) $(PYTHON3) setup3.py $(PURE) \
|
|
build_py -c -d . \
|
|
build_clib $(COMPILERFLAG) \
|
|
build_ext $(COMPILERFLAG) -i \
|
|
build_rust_ext -i -l $(RFLAG)\
|
|
build_pyzip -i \
|
|
build_mo
|
|
ifeq ($(OS),Windows_NT)
|
|
cp build/scripts-3*/$(HGNAME3).exe $(HGNAME3).exe
|
|
else
|
|
$(RM) $(HGNAME3)
|
|
cp build/scripts-3*/$(HGNAME3) $(HGNAME3)
|
|
endif
|
|
|
|
build:
|
|
$(PYTHON) setup.py $(PURE) build $(COMPILERFLAG)
|
|
|
|
wheel:
|
|
FORCE_SETUPTOOLS=1 $(PYTHON) setup.py $(PURE) bdist_wheel $(COMPILERFLAG)
|
|
|
|
getdepsbuild:
|
|
mkdir -p $(GETDEPS_BUILD_DIR)/eden_scm
|
|
ln -sfn $(GETDEPS_BUILD_DIR)/eden_scm build
|
|
ln -sfn $(GETDEPS_INSTALL_DIR)/fbthrift-source/thrift ../../thrift
|
|
ln -sfn $(GETDEPS_INSTALL_DIR)/fb303-source/fb303 ../../fb303
|
|
mkdir -p ../../common/rust
|
|
ln -sfn $(GETDEPS_INSTALL_DIR)/rust-shed/source/shed ../../common/rust/shed
|
|
GETDEPS_BUILD=1 \
|
|
THRIFT="$(GETDEPS_INSTALL_DIR)/fbthrift/bin/thrift1" \
|
|
$(PYTHON) setup.py $(PURE) build $(COMPILERFLAG)
|
|
|
|
cleanbutpackages:
|
|
-$(PYTHON) setup.py clean --all # ignore errors from this command
|
|
-$(PYTHON3) setup3.py clean --all # ignore errors from this command
|
|
find contrib doc i18n edenscm edenscmnative tests \
|
|
\( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';'
|
|
rm -f MANIFEST MANIFEST.in edenscm/hgext/__index__.py tests/*.err
|
|
rm -f edenscm/mercurial/__modulepolicy__.py
|
|
if test -d .hg; then rm -f edenscm/mercurial/__version__.py; fi
|
|
rm -rf build/*
|
|
rm -rf build edenscm/mercurial/locale
|
|
ifeq ($(OS),Windows_NT)
|
|
$(RM) -r hg-python $(HGNAME).exe python27.dll
|
|
else
|
|
$(RM) $(HGNAME)
|
|
endif
|
|
|
|
clean: cleanbutpackages
|
|
rm -rf packages
|
|
|
|
install: build
|
|
$(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force
|
|
|
|
install-home: build
|
|
$(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force
|
|
|
|
install-getdeps: getdepsbuild
|
|
GETDEPS_BUILD=1 $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force
|
|
|
|
check: tests
|
|
|
|
update-pot: i18n/hg.pot
|
|
|
|
i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext
|
|
$(PYTHON) i18n/hggettext edenscm/mercurial/commands.py \
|
|
edenscm/hgext/*.py edenscm/hgext/*/__init__.py \
|
|
edenscm/mercurial/fileset.py edenscm/mercurial/revset.py \
|
|
edenscm/mercurial/templatefilters.py edenscm/mercurial/templatekw.py \
|
|
edenscm/mercurial/templater.py \
|
|
edenscm/mercurial/filemerge.py \
|
|
edenscm/mercurial/hgweb/webcommands.py \
|
|
edenscm/mercurial/util.py \
|
|
$(DOCFILES) > i18n/hg.pot.tmp
|
|
# All strings marked for translation in Mercurial contain
|
|
# ASCII characters only. But some files contain string
|
|
# literals like this '\037\213'. xgettext thinks it has to
|
|
# parse them even though they are not marked for translation.
|
|
# Extracting with an explicit encoding of ISO-8859-1 will make
|
|
# xgettext "parse" and ignore them.
|
|
echo $(PYFILES) | xargs \
|
|
xgettext --package-name "Mercurial" \
|
|
--msgid-bugs-address "<mercurial-devel@mercurial-scm.org>" \
|
|
--copyright-holder "Matt Mackall <mpm@selenic.com> and others" \
|
|
--from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
|
|
--keyword=_n:1,2 -d hg -p i18n -o hg.pot.tmp
|
|
$(PYTHON) i18n/posplit i18n/hg.pot.tmp
|
|
# The target file is not created before the last step. So it never is in
|
|
# an intermediate state.
|
|
mv -f i18n/hg.pot.tmp i18n/hg.pot
|
|
|
|
%.po: i18n/hg.pot
|
|
# work on a temporary copy for never having a half completed target
|
|
cp $@ $@.tmp
|
|
msgmerge --no-location --update $@.tmp $^
|
|
mv -f $@.tmp $@
|
|
|
|
# Packaging targets
|
|
|
|
.PHONY: help all local local3 build cleanbutpackages clean install install-home install-getdeps getdepsbuild
|