blob: 0217dbc398346de7d383e45e2b4ceb746ad4e343 [file] [log] [blame]
manarabdelatyb5548c42021-04-14 15:05:54 +02001#!/bin/bash
2# SPDX-FileCopyrightText: 2020 Efabless Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15# SPDX-License-Identifier: Apache-2.0
16
17export UPRJ_ROOT=$(pwd)
18cd ..
19export PDK_ROOT=$(pwd)/pdks
manarabdelaty9619ef12021-04-20 11:34:31 +020020export CARAVEL_ROOT=$(pwd)/caravel
manarabdelatyb5548c42021-04-14 15:05:54 +020021export IMAGE_NAME=efabless/openlane:$OPENLANE_TAG
22
23cd $UPRJ_ROOT
24
manarabdelaty17665442021-04-19 18:01:38 +020025# Install full version of caravel
manarabdelaty9619ef12021-04-20 11:34:31 +020026git clone https://github.com/efabless/caravel --branch develop --depth 1 $CARAVEL_ROOT
manarabdelaty17665442021-04-19 18:01:38 +020027
manarabdelatyfaf66492021-04-20 12:01:55 +020028docker run -v $UPRJ_ROOT:$UPRJ_ROOT -v $PDK_ROOT:$PDK_ROOT -v $CARAVEL_ROOT:$CARAVEL_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 $CARAVEL_ROOT; make uncompress; cd $UPRJ_ROOT; make ship;"
manarabdelatyb5548c42021-04-14 15:05:54 +020029
30SHIP_FILE=$UPRJ_ROOT/gds/caravel.gds
31
32if test -f "$SHIP_FILE"; then
33 exit 0
34else
manarabdelatyeb2b9032021-04-19 12:31:47 +020035 exit 2
manarabdelatyb5548c42021-04-14 15:05:54 +020036fi