-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ on: | |
options: | ||
- kernel | ||
- build | ||
- u-boot | ||
default: build | ||
|
||
armbian_kernel_branch: | ||
|
@@ -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}}" | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters