From 306db4f5b55cf61763432ed028359a8f90f45db1 Mon Sep 17 00:00:00 2001 From: Franco Cipollone Date: Tue, 7 Nov 2023 09:12:38 -0300 Subject: [PATCH] Try using manually clone. Signed-off-by: Franco Cipollone --- .github/workflows/ci.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38c5ed2..6401ab7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,13 +12,19 @@ jobs: container: image: ubuntu:20.04 steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 2 - - name: Install requirements + - name: Install prereqs run: | apt-get update apt-get install -y git python3-pip python3-empy + - name: Clone repo this repo + run: | + git clone https://github.com/maliput/maliput_xodr.git + - name: Checkout branch + run: | + git fetch origin pull/${{ github.event.number }}/head:pr + git checkout pr + - name: Install requirements + run: | pip3 install -r requirements.txt - name: Generate maps run: |