Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b25702e
feat: Add adpter's C bindings and cmsis systick
han-jiang277 Oct 13, 2025
d70dcc9
Fix format
han-jiang277 Oct 14, 2025
ce4d7f1
Merge branch 'vivoblueos:main' into main
han-jiang277 Oct 14, 2025
c0371f3
Merge branch 'vivoblueos:main' into main
han-jiang277 Oct 14, 2025
caceb64
Add kernel Dockerfile
han-jiang277 Oct 15, 2025
fdf0005
Merge branch 'vivoblueos:main' into main
han-jiang277 Oct 15, 2025
8b8d311
use vivoblueos for test
han-jiang277 Oct 15, 2025
8e269dc
use ubuntu 2404
han-jiang277 Oct 15, 2025
306d476
delelte bash at end of dockerfile
han-jiang277 Oct 15, 2025
551052a
Add repo binary
han-jiang277 Oct 15, 2025
d09255e
Merge remote-tracking branch 'upstream/main'
han-jiang277 Oct 15, 2025
73d5d37
fix build workflow path
han-jiang277 Oct 15, 2025
cb3ef13
fix runs-on
han-jiang277 Oct 15, 2025
7fc1874
add git
han-jiang277 Oct 15, 2025
58bbdd7
use bash
han-jiang277 Oct 15, 2025
9eaaee2
use sh in docker
han-jiang277 Oct 15, 2025
12d75d2
Add cargo bin PATH
han-jiang277 Oct 15, 2025
d03b557
Merge remote-tracking branch 'upstream/main'
han-jiang277 Oct 16, 2025
d471c35
cant free space in docker
han-jiang277 Oct 16, 2025
e5ca56b
Add lld
han-jiang277 Oct 16, 2025
d1d9350
run as multi jobs
han-jiang277 Oct 16, 2025
284023c
Merge remote-tracking branch 'upstream/main'
han-jiang277 Oct 16, 2025
12dd013
test yamlfmt
han-jiang277 Oct 16, 2025
26511a0
add ymal format
han-jiang277 Oct 17, 2025
e630a28
fix format
han-jiang277 Oct 17, 2025
09f494c
Merge remote-tracking branch 'upstream/main'
han-jiang277 Oct 17, 2025
17b6ea1
Fix: Add ghcr credentials
han-jiang277 Oct 17, 2025
1263ad2
Merge remote-tracking branch 'upstream/main'
han-jiang277 Oct 17, 2025
8dd50bb
Fix: add packages read permission
han-jiang277 Oct 17, 2025
d897117
Merge remote-tracking branch 'upstream/main'
han-jiang277 Oct 17, 2025
0c03007
Fix: use posix sh in workflow
han-jiang277 Oct 17, 2025
c09f8aa
test
han-jiang277 Oct 17, 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/cross_repos_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ on:

jobs:
call_workflow:
uses: vivoblueos/kernel/.github/workflows/reusable_cross_repos_build.yml@main
uses: ./.github/workflows/reusable_cross_repos_build.yml
6 changes: 3 additions & 3 deletions .github/workflows/reusable_cross_repos_build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Reusable trigger of building cross multiple repositories


on:
workflow_call:

Expand Down Expand Up @@ -63,7 +64,6 @@ jobs:
});
fetched_prs.push({owner: owner, repo: repo, pr_num: pr_num, sha: pullRequest.head.sha});
}));

// Download diffs.
await Promise.all(patchUrls.map(async ({ repo, url }) => {
console.log(`Downloading ${url}`);
Expand All @@ -87,13 +87,13 @@ jobs:
for patch in patches/*.diff; do
patch_abspath=$(realpath ${patch})
repo=$(basename ${patch} ".diff")
if [[ ${repo} != "manifests" ]];then
if [ "${repo}" != "manifests" ]; then
cd ${repo}
else
cd .repo/${repo}
fi
git apply -3 --check --verbose ${patch_abspath} && git apply -3 --verbose ${patch_abspath}
if [[ $? != 0 ]]; then
if [ $? != 0 ]; then
exit 1
fi
cd - > /dev/null
Expand Down