From: Jacob Lifshay Date: Wed, 1 Apr 2020 03:48:55 +0000 (-0700) Subject: move clone paths to inside current directory X-Git-Tag: 24jan2021_ls180~73 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1538f60d73d9167504437fee90be41ded3be3608;p=nmutil.git move clone paths to inside current directory --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 984f99b..4b6faf5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,16 +10,16 @@ build: python3-setuptools python3-wheel pkg-config tcl-dev libreadline-dev bison flex libffi-dev - - git clone --depth 1 https://github.com/YosysHQ/yosys.git ../yosys - - pushd ../yosys + - git clone --depth 1 https://github.com/YosysHQ/yosys.git yosys + - pushd yosys - make config-gcc - make -j$(nproc) - make install - popd - yosys -V - - git clone --depth 1 https://github.com/nmigen/nmigen.git ../nmigen - - pushd ../nmigen + - git clone --depth 1 https://github.com/nmigen/nmigen.git nmigen + - pushd nmigen - python3 setup.py develop - popd