Point to efabless/caravel-lite
diff --git a/.github/scripts/build/run-set-id.sh b/.github/scripts/build/run-set-id.sh index 9b1cdf5..3773f24 100644 --- a/.github/scripts/build/run-set-id.sh +++ b/.github/scripts/build/run-set-id.sh
@@ -15,16 +15,16 @@ # SPDX-License-Identifier: Apache-2.0 export UPRJ_ROOT=$(pwd) -export CARAVEL_ROOT=$(pwd)/caravel cd .. export PDK_ROOT=$(pwd)/pdks +export CARAVEL_ROOT=$(pwd)/caravel export IMAGE_NAME=efabless/openlane:$OPENLANE_TAG export USER_ID=00000001 cd $UPRJ_ROOT # Install full version of caravel -git clone https://github.com/efabless/caravel --branch develop --depth 1 +git clone https://github.com/efabless/caravel --branch develop --depth 1 $CARAVEL_ROOT LOG_FILE=out.log docker run -v $UPRJ_ROOT:$UPRJ_ROOT -v $PDK_ROOT:$PDK_ROOT -e UPRJ_ROOT=$UPRJ_ROOT -e PDK_ROOT=$PDK_ROOT -e CARAVEL_ROOT=$CARAVEL_ROOT -u $(id -u $USER):$(id -g $USER) $IMAGE_NAME bash -c "cd $UPRJ_ROOT; export USER_ID=$USER_ID; make set_user_id | tee $LOG_FILE;"
diff --git a/.github/scripts/build/run-ship.sh b/.github/scripts/build/run-ship.sh index d1c01ab..4319aa8 100644 --- a/.github/scripts/build/run-ship.sh +++ b/.github/scripts/build/run-ship.sh
@@ -15,15 +15,15 @@ # SPDX-License-Identifier: Apache-2.0 export UPRJ_ROOT=$(pwd) -export CARAVEL_ROOT=$(pwd)/caravel cd .. export PDK_ROOT=$(pwd)/pdks +export CARAVEL_ROOT=$(pwd)/caravel export IMAGE_NAME=efabless/openlane:$OPENLANE_TAG cd $UPRJ_ROOT # Install full version of caravel -git clone https://github.com/efabless/caravel --branch develop --depth 1 +git clone https://github.com/efabless/caravel --branch develop --depth 1 $CARAVEL_ROOT docker run -v $UPRJ_ROOT:$UPRJ_ROOT -v $PDK_ROOT:$PDK_ROOT -e UPRJ_ROOT=$UPRJ_ROOT -e PDK_ROOT=$PDK_ROOT -e CARAVEL_ROOT=$CARAVEL_ROOT -u $(id -u $USER):$(id -g $USER) $IMAGE_NAME bash -c "cd $UPRJ_ROOT; make ship;"
diff --git a/.gitmodules b/.gitmodules index 093d49f..c73b442 100644 --- a/.gitmodules +++ b/.gitmodules
@@ -1,3 +1,3 @@ [submodule "caravel-lite"] path = caravel - url = https://github.com/Manarabdelaty/caravel-lite + url = https://github.com/efabless/caravel-lite
diff --git a/Makefile b/Makefile index b569691..01aa01f 100644 --- a/Makefile +++ b/Makefile
@@ -21,7 +21,7 @@ ifeq ($(CARAVEL_LITE),1) CARAVEL_NAME := caravel-lite - CARAVEL_REPO := https://github.com/Manarabdelaty/caravel-lite + CARAVEL_REPO := https://github.com/efabless/caravel-lite else CARAVEL_NAME := caravel CARAVEL_REPO := https://github.com/efabless/caravel