Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: switch to ARM runners #58

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d254d1a
build: switch to ARM runners
meteyou Jan 16, 2025
a50dc69
Merge branch 'master' into chore/switch-to-arm-runners
meteyou Jan 27, 2025
beb7184
ci: switch setup job to ubuntu-latest and build jobs to ubuntu-24.04-arm
meteyou Jan 27, 2025
419c577
ci: switch setup job to ubuntu-latest and build jobs to ubuntu-24.04-arm
meteyou Jan 27, 2025
3563859
fix: descriptinc/free-disk-space is not working on ARM runners, but i…
meteyou Jan 28, 2025
e9bc095
fix: add condition to only run "Free Github Runner on non "ubuntu-24.…
meteyou Jan 28, 2025
36d5c62
chore: add debug outputs
meteyou Jan 28, 2025
b69ec94
chore: add debug outputs
meteyou Jan 28, 2025
a653b6b
chore: add debug outputs
meteyou Jan 28, 2025
db8f61e
chore: add debug outputs
meteyou Jan 28, 2025
da01e3f
chore: add debug outputs
meteyou Jan 28, 2025
addd9c0
chore: add ARM64 condition to orangepi build script
meteyou Jan 28, 2025
37bf5ae
fix: switch to test branch of orangepi-build to build uboot on arm64
meteyou Jan 28, 2025
26155c4
fix: fix testfork url
meteyou Jan 28, 2025
c3d3704
feat: update armbian branch to v25.02
meteyou Mar 2, 2025
dc2b99d
Merge branch 'feat/update-armbian' into chore/switch-to-arm-runners
meteyou Mar 2, 2025
e0a43ec
fix: change back to mainline orangepi repo
meteyou Mar 2, 2025
96e3648
ci: build armbian images with ubuntu-22.04-arm
meteyou Mar 2, 2025
6d162ca
ci: build orangepi images with ubuntu-latest
meteyou Mar 2, 2025
b1944e5
fix: use ARMBIAN_BRANCH=v24.11 for bananapi m2 zero
meteyou Mar 2, 2025
1a16f29
Merge branch 'feat/update-armbian' into chore/switch-to-arm-runners
meteyou Mar 2, 2025
e3cddf1
fix: remove unused board configs
meteyou Mar 2, 2025
7a93a30
Merge branch 'feat/update-armbian' into chore/switch-to-arm-runners
meteyou Mar 2, 2025
36ffaf5
ci: fix runners in pull_request.yml
meteyou Mar 2, 2025
8ddb112
Merge branch 'master' into chore/switch-to-arm-runners
meteyou Mar 2, 2025
1974940
feat: add opi zero 2w again
meteyou Mar 2, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/BuildTrain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
build-armbian:
name: Armbian
needs: [setup, release]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04-arm
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
build-armbian:
name: Armbian
needs: [ setup ]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04-arm
strategy:
fail-fast: false
matrix:
Expand Down
10 changes: 8 additions & 2 deletions actions/build-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ inputs:
runs:
using: 'composite'
steps:
#- name: Runner prepare
# uses: ./actions/runner-prepare
- name: List runner attributes
shell: bash
run: |
echo "::group::Runner Attributes"
env | grep -i runner
echo "::endgroup::"

- name: Free Github Runner
if: runner.arch != 'ARM64'
uses: descriptinc/free-disk-space@main
with:
android: true
Expand Down
1 change: 1 addition & 0 deletions actions/build-orangepi-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ runs:
#- name: Runner prepare
# uses: ./actions/runner-prepare
- name: Free Github Runner
if: runner.arch != 'ARM64'
uses: descriptinc/free-disk-space@main
with:
android: true
Expand Down
Loading