Skip to content

Commit 2411412

Browse files
committed
build eduos also for aarch64
1 parent c357ae1 commit 2411412

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/clippy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
os: [ubuntu-latest]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
submodules: true
2424
- name: Check Cargo availability
@@ -27,3 +27,5 @@ jobs:
2727
run: cargo clippy
2828
- name: Check clippy (i688)
2929
run: cargo clippy --target i686-eduos.json
30+
- name: Check clippy (aarch64)
31+
run: cargo clippy --target aarch64-eduos.json

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
os: [ubuntu-latest]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
submodules: true
2424
- name: Check Cargo availability

.github/workflows/run.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
choco install qemu
3737
echo "$Env:Programfiles\qemu" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
3838
shell: pwsh
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- name: Check Cargo availability
4141
run: cargo --version
4242
- name: Install bootimage
@@ -47,6 +47,9 @@ jobs:
4747
- name: Build (i686)
4848
run:
4949
cargo build --target=i686-eduos.json
50+
- name: Build (aarch64)
51+
run:
52+
cargo build --target=aarch64-eduos.json
5053
- name: run (ubuntu)
5154
if: ${{ matrix.os == 'ubuntu-latest' }}
5255
run: ./test.sh

0 commit comments

Comments
 (0)