File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1037,12 +1037,13 @@ jobs:
10371037 shell : bash
10381038 run : |
10391039 sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev
1040- - name : Build coreutils as multiple binaries
1040+ - name : Build coreutils
10411041 shell : bash
10421042 run : |
1043- ## Build individual uutil binaries
10441043 set -v
1045- make
1044+ ln -sf /bin/* -t . # Fill not coreutils
1045+ make MULTICALL=y && (cd target/debug && for binary in $(./coreutils --list);do ln -sf coreutils ${binary};done)
1046+
10461047 - name : Run toybox src
10471048 shell : bash
10481049 run : |
Original file line number Diff line number Diff line change 1- # spell-checker:ignore (misc) testsuite runtest findstring (targets) busytest toybox distclean pkgs nextest ; (vars/env) BINDIR BUILDDIR CARGOFLAGS DESTDIR DOCSDIR INSTALLDIR INSTALLEES MULTICALL DATAROOTDIR TESTDIR manpages
1+ # spell-checker:ignore (misc) testsuite runtest findstring (targets) busytest toybox distclean pkgs nextest ; (vars/env) BINDIR BUILDDIR CARGOFLAGS CFLAGS DESTDIR DOCSDIR INSTALLDIR INSTALLEES MULTICALL DATAROOTDIR TESTDIR manpages
22
33# Config options
44ifneq (,$(filter install, $(MAKECMDGOALS ) ) )
@@ -342,7 +342,7 @@ nextest:
342342 ${CARGO} nextest run ${CARGOFLAGS} --features " $( TESTS) $( TEST_SPEC_FEATURE) " $(PROFILE_CMD ) --no-default-features $(TEST_NO_FAIL_FAST )
343343
344344test_toybox :
345- -(cd $( TOYBOX_SRC) / && make tests)
345+ -(cd $( TOYBOX_SRC) / && CFLAGS= " -pipe -O0 -s " make tests)
346346
347347toybox-src :
348348 if [ ! -e " $( TOYBOX_SRC) " ] ; then \
You can’t perform that action at this time.
0 commit comments