mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
Simplify commands for jobs in push.yml (#1761)
* Simplify commands for build steps * Fixing multi-lang builds for Pinecil & PinecilV2 * Makefile: fix multi-thread building support * source/Makefile: fix formatting --------- Co-authored-by: Ben V. Brown <5425387+Ralim@users.noreply.github.com>
This commit is contained in:
8
Makefile
8
Makefile
@@ -140,7 +140,7 @@ test-py:
|
||||
@echo ""
|
||||
flake8 Translations
|
||||
black --check Translations
|
||||
@make -C source/ Objects/host/brieflz/libbrieflz.so
|
||||
@$(MAKE) -C source/ Objects/host/brieflz/libbrieflz.so
|
||||
./Translations/brieflz_test.py
|
||||
./Translations/make_translation_test.py
|
||||
|
||||
@@ -149,7 +149,7 @@ test-ccpp:
|
||||
@echo ""
|
||||
@echo "---- Checking C/C++ code... ----"
|
||||
@echo ""
|
||||
make -C source/ clean check-style
|
||||
$(MAKE) -C source/ clean check-style
|
||||
|
||||
# meta target for tests & checks based on .github/workflows/push
|
||||
tests: test-md test-sh test-py test-ccpp
|
||||
@@ -159,11 +159,11 @@ tests: test-md test-sh test-py test-ccpp
|
||||
|
||||
# pass-through target for Makefile inside source/ dir
|
||||
%:
|
||||
make -C source/ $@
|
||||
$(MAKE) -C source/ $@
|
||||
|
||||
# global clean-up target for produced/generated files inside tree
|
||||
clean-build:
|
||||
make -C source/ clean-all
|
||||
$(MAKE) -C source/ clean-all
|
||||
rm -Rf site
|
||||
rm -Rf scripts/ci/artefacts
|
||||
|
||||
|
||||
Reference in New Issue
Block a user