From 6c09c8e9324cbc2ac2e1f2a619c5d8b6a0bd47ad Mon Sep 17 00:00:00 2001 From: Orlando Chamberlain Date: Sun, 19 Feb 2023 15:17:58 +1100 Subject: [PATCH] Update compile_test.yml support gz for rc --- .github/workflows/compile_test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile_test.yml b/.github/workflows/compile_test.yml index 2fa164f..ed36ceb 100644 --- a/.github/workflows/compile_test.yml +++ b/.github/workflows/compile_test.yml @@ -13,11 +13,13 @@ jobs: if [ -n "$_RC" ]; then KSRC_URL=https://git.kernel.org/torvalds/t/linux-${KVER}.tar.gz + curl $KSRC_URL | tar -xz else KSRC_URL=https://cdn.kernel.org/pub/linux/kernel/v${KVER//.*}.x/linux-${KVER}.tar.xz + curl $KSRC_URL | tar -xJ fi - curl $KSRC_URL | tar -xJ + - name: Install Build Dependencies run: | sudo apt-get install -y build-essential fakeroot libncurses-dev bison flex libssl-dev libelf-dev \