Skip to content

Commit e4fcfb0

Browse files
install qemu in workflow file, update user/Makefile
1 parent c945a80 commit e4fcfb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- uses: actions/checkout@v4
6767
- name: Install generaic tools
68-
run: yes | pacman -Syy make cmake rustup gcc git openssh
68+
run: yes | pacman -Syy make cmake rustup gcc git openssh ${{ matrix.packages }}
6969
- name: setup rust toolchain
7070
run: rustup default nightly && cargo install cargo-binutils && cargo install kbuild
7171
- name: setup environment

user/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ TEST ?=
1515
elf: $(APPS)
1616
@cargo build -Z build-std --target $(TARGET) --release
1717
ifeq ($(TEST), 1)
18-
@$(CP) $(TARGET_DIR)/usertests $(TARGET_DIR)/initproc
18+
$(CP) $(TARGET_DIR)/usertests $(TARGET_DIR)/initproc
1919
endif
2020

2121
binary: elf

0 commit comments

Comments
 (0)