2 Commits

Author SHA1 Message Date
remittor
3e49b946af test 3 2026-01-03 10:17:34 +03:00
remittor
a8f744bf4b test 2 2026-01-02 22:49:37 +03:00

View File

@@ -232,7 +232,7 @@ jobs:
if: github.event.inputs.use_cache == 'true' if: github.event.inputs.use_cache == 'true'
uses: actions/cache/restore@v4 uses: actions/cache/restore@v4
with: with:
key: host-tools-${{ hashFiles('tools/**') }} key: host-tools-001-${{ hashFiles('tools/**') }}
path: | path: |
staging_dir/host staging_dir/host
build_dir/host build_dir/host
@@ -354,7 +354,7 @@ jobs:
if: steps.tools.outputs.status == 'success' && github.event.inputs.use_cache != 'true' if: steps.tools.outputs.status == 'success' && github.event.inputs.use_cache != 'true'
uses: actions/cache/save@v4 uses: actions/cache/save@v4
with: with:
key: host-tools-${{ hashFiles('tools/**') }} key: host-tools-001-${{ hashFiles('tools/**') }}
path: | path: |
staging_dir/host staging_dir/host
build_dir/host build_dir/host
@@ -370,12 +370,23 @@ jobs:
- name: Kernel compile - name: Kernel compile
id: kernel id: kernel
if: ${{ steps.tools.outputs.status == 'success' && github.event.inputs.fake_build != 'true' }}
run: |
make target/linux/compile -j$(nproc)
echo "status=success" >> $GITHUB_OUTPUT
echo "====== package/utils/lua/host/compile"
make package/utils/lua/host/compile
echo "====== package/system/apk/host/compile"
make package/system/apk/host/compile
echo "====== package/feeds/packages/mdio-netlink"
make package/feeds/packages/mdio-netlink/compile V=s --debug=j
- name: XXX compile
if: false # ${{ steps.tools.outputs.status == 'success' && github.event.inputs.fake_build != 'true' }} if: false # ${{ steps.tools.outputs.status == 'success' && github.event.inputs.fake_build != 'true' }}
run: | run: |
make target/linux/compile -j$(npoc) make package/utils/lua/host/compile
make target/linux/install -j$(npoc) make package/system/apk/host/compile
make target/linux/dtb -j$(npoc) make make package/feeds/packages/mdio-netlink/compile V=sc
make target/linux/prereq
echo "status=success" >> $GITHUB_OUTPUT echo "status=success" >> $GITHUB_OUTPUT
- name: Monitor memory 2 - name: Monitor memory 2
@@ -403,7 +414,7 @@ jobs:
fi fi
if [ "$FAKE_BUILD" != "true" ]; then if [ "$FAKE_BUILD" != "true" ]; then
if [ "$TEST_BUILD" != "true" ]; then if [ "$TEST_BUILD" != "true" ]; then
make -j$(nproc) download world make -j$(nproc) world
else else
make V=sc world make V=sc world
fi fi