From 89e9f8a00cd05e85d763fcc8f447b3456dd6c8a5 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 14 Feb 2022 20:57:35 +0200 Subject: [PATCH] ci: fix vinix compilation to commit aa18fc0 (Meson building mlibc fails in a01546b) --- .github/workflows/vinix-kernel.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vinix-kernel.yml b/.github/workflows/vinix-kernel.yml index b6336f9032..1105797199 100644 --- a/.github/workflows/vinix-kernel.yml +++ b/.github/workflows/vinix-kernel.yml @@ -16,12 +16,15 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install dependencies - run: sudo apt-get update && sudo apt-get install build-essential meson -y + run: | + sudo apt-get update + sudo apt-get install build-essential meson -y - name: Build V run: make - name: Clone current Vinix run: | - git clone https://github.com/vlang/vinix.git --depth 1 + git clone https://github.com/vlang/vinix + cd vinix && git checkout aa18fc0 - name: Clone current mlibc run: git clone https://github.com/managarm/mlibc.git --depth=1 - name: Patch mlibc for Vinix