From 99ba157cbd33b04c89ec842378df47d414d30092 Mon Sep 17 00:00:00 2001 From: dey4ss <27929897+dey4ss@users.noreply.github.com> Date: Mon, 22 Jul 2024 18:13:16 +0900 Subject: [PATCH] checkout manually for Ubuntu 18.04 --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9cd48c34..8d848f16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,16 @@ jobs: steps: - uses: actions/checkout@v4 + if: matrix.name != 'gcc-6' + + - name: Checkout (Ubuntu 18.04) + if: matrix.name == 'gcc-6' + run: | + apt-get update + apt-get install -y git + git config --global --add safe.directory '*' + git clone https://github.com/hyrise/sql-parser . + git checkout $GITHUB_HEAD_REF - name: Setup (macOS) if: matrix.name == 'clang-macOS'