From 823c9a3c84c89f9571a2a08c6f0a477a9d8cef74 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 7 Sep 2021 07:13:42 +0300 Subject: [PATCH] ci: fix vinix-build job after commit 9776274 in vinix --- .github/workflows/vinix-kernel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vinix-kernel.yml b/.github/workflows/vinix-kernel.yml index cbacd77c49..0953fc6f46 100644 --- a/.github/workflows/vinix-kernel.yml +++ b/.github/workflows/vinix-kernel.yml @@ -24,7 +24,7 @@ jobs: - name: Clone current mlibc run: git clone https://github.com/managarm/mlibc.git --depth=1 - name: Patch mlibc for Vinix - run: cd mlibc && patch -p3 < ../vinix/patches/mlibc/mlibc.patch + run: cd mlibc && patch -p1 < ../vinix/patches/mlibc/0001-Vinix-specific-changes.patch - name: Install mlibc headers run: mkdir mlibc-build && cd mlibc-build && meson --cross-file ../vinix/cross_file.txt --prefix=/ -Dheaders_only=true ../mlibc && ninja && mkdir ../mlibc-headers && DESTDIR=`realpath ../mlibc-headers` ninja install - name: Attempt to build the Vinix kernel (debug)