Skip to content
Closed
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f249944
Add TARGET environment variable to action.yml
Zerogiven Dec 24, 2025
273ff28
Update action.yml to conditionally run docker commands
Zerogiven Dec 24, 2025
78985c3
Change parallel jobs from nproc to 1 in entrypoint.sh
Zerogiven Jan 25, 2026
00f5d77
Change parallel jobs to use available processors
Zerogiven Jan 25, 2026
0e2f239
Update llvm.download-ci-llvm setting in Makefile
Zerogiven Jan 25, 2026
c12008a
Update RUST_MAKEFILE path in entrypoint.sh
Zerogiven Jan 25, 2026
3191eec
Fix Rust Makefile path and add grep command
Zerogiven Jan 25, 2026
b7800d6
Fix grep pattern for llvm.download-ci-llvm
Zerogiven Jan 25, 2026
e803abb
Update RUST_MAKEFILE path in entrypoint.sh
Zerogiven Jan 25, 2026
011c0f9
Remove llvm.download-ci-llvm handling from entrypoint.sh
Zerogiven Jan 29, 2026
e96a1a2
Download patch for missing prototypes warnings
Zerogiven Jan 31, 2026
7825c6b
Fix wget command argument order for patch download
Zerogiven Jan 31, 2026
080d380
Fix wget option for downloading patch file
Zerogiven Jan 31, 2026
e6bdccf
Fix wget option from '-o' to '-O' for patch download
Zerogiven Jan 31, 2026
06ff379
Remove wget command for patch file download
Zerogiven Jan 31, 2026
a1b853d
Add commands to list and display ltq-adsl Makefile
Zerogiven Jan 31, 2026
96a3695
Update Makefile path in entrypoint.sh
Zerogiven Jan 31, 2026
e24ab6a
Add KCFLAGS to Makefile for lantiq ltq-adsl
Zerogiven Jan 31, 2026
8eef84d
Update entrypoint.sh to modify build flags and comments
Zerogiven Jan 31, 2026
f5ccce5
Update KCFLAGS in Makefile for compiler warnings
Zerogiven Jan 31, 2026
85e6ff5
Update entrypoint.sh to modify kernel Makefile
Zerogiven Jan 31, 2026
d3179d1
Modify entrypoint.sh to update KernelPackage steps
Zerogiven Jan 31, 2026
291396c
Clean up entrypoint.sh by removing unused code
Zerogiven Jan 31, 2026
a3aea9d
Upgrade Docker actions to latest versions
Zerogiven Apr 28, 2026
80cb73e
Merge branch 'main' into main
Zerogiven May 3, 2026
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
23 changes: 22 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ runs:
cache-from: type=gha,scope=${{ env.CONTAINER }}-${{ env.ARCH }}
load: true

- run: |
- if: always() && env.TARGET == ''
run: |
docker run --rm \
--env BUILD \
--env BUILD_LOG \
Expand All @@ -52,6 +53,26 @@ runs:
-v ${{ steps.inputs.outputs.feed_dir }}:/feed \
sdk
shell: bash
- if: always() && env.TARGET != ''
run: |
docker run --rm \
--env TARGET \
--env BUILD_LOG \
--env EXTRA_FEEDS \
--env FEEDNAME \
--env IGNORE_ERRORS \
--env KEY_BUILD \
--env PRIVATE_KEY \
--env NO_DEFAULT_FEEDS \
--env NO_REFRESH_CHECK \
--env NO_SHFMT_CHECK \
--env PACKAGES \
--env INDEX \
--env V \
-v ${{ steps.inputs.outputs.artifacts_dir }}:/artifacts \
-v ${{ steps.inputs.outputs.feed_dir }}:/feed \
sdk
shell: bash
- run: sudo chown -R --reference=${{ steps.inputs.outputs.artifacts_dir }}/.. ${{ steps.inputs.outputs.artifacts_dir }}
shell: bash
if: always()
Expand Down
Loading