Skip to content

Commit

Permalink
add missing modules to
Browse files Browse the repository at this point in the history
  • Loading branch information
pykpkg47 authored Sep 5, 2024
1 parent 7edd9e9 commit e4103c9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/complete-artifact-one-by-one.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
options:
- kernel
- build
- u-boot
default: build

armbian_kernel_branch:
Expand Down Expand Up @@ -294,9 +295,13 @@ jobs:

name: "Build Armbian"
runs-on: ubuntu-latest
steps:
steps:

- uses: armbian/[email protected]
- name: install missing f2fs and nilfs kernel modules
run: sudo apt update && sudo apt -y install linux-modules-extra-$(uname -r )

- name: Run Armbian Build system
uses: armbian/[email protected]
with:
armbian_token: "${{secrets.GITHUB_TOKEN}}"
armbian_target: "${{inputs.armbian_target}}"
Expand All @@ -305,11 +310,12 @@ jobs:
armbian_ui: "${{inputs.armbian_ui}}"
armbian_board: "${{inputs.armbian_board}}"
armbian_branch: "${{inputs.armbian_version}}"
armbian_artifacts: "${{inputs.armbian_target == 'kernel' && 'build/output/debs/' || 'build/output/images/'}}"
armbian_artifacts: "${{inputs.armbian_target == 'kernel' && 'build/output/debs/' || inputs.armbian_target =='u-boot' && 'build/output/debs/' || 'build/output/images/'}}"
armbian_release_tittle: "Armbian image release for ${{inputs.armbian_board}}"
armbian_release_body: " kernel:${{inputs.armbian_kernel_branch}} \n distro: ${{inputs.armbian_release}} \n UI: ${{inputs.armbian_ui}} "

- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
timeout-minutes: 150

3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
- name: list modules
run: cat /proc/filesystems


- name: system-level-dependencies
run: sudo apt update && sudo apt -y install linux-modules-extra-$(uname -r )

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3

0 comments on commit e4103c9

Please sign in to comment.