manarabdelaty | b5548c4 | 2021-04-14 15:05:54 +0200 | [diff] [blame] | 1 | #!/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 | |
| 17 | export UPRJ_ROOT=$(pwd) |
| 18 | cd .. |
| 19 | export PDK_ROOT=$(pwd)/pdks |
manarabdelaty | 9619ef1 | 2021-04-20 11:34:31 +0200 | [diff] [blame] | 20 | export CARAVEL_ROOT=$(pwd)/caravel |
manarabdelaty | b5548c4 | 2021-04-14 15:05:54 +0200 | [diff] [blame] | 21 | export IMAGE_NAME=efabless/openlane:$OPENLANE_TAG |
| 22 | |
| 23 | cd $UPRJ_ROOT |
| 24 | |
manarabdelaty | 1766544 | 2021-04-19 18:01:38 +0200 | [diff] [blame] | 25 | # Install full version of caravel |
manarabdelaty | 9619ef1 | 2021-04-20 11:34:31 +0200 | [diff] [blame] | 26 | git clone https://github.com/efabless/caravel --branch develop --depth 1 $CARAVEL_ROOT |
manarabdelaty | 1766544 | 2021-04-19 18:01:38 +0200 | [diff] [blame] | 27 | |
manarabdelaty | faf6649 | 2021-04-20 12:01:55 +0200 | [diff] [blame] | 28 | docker 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;" |
manarabdelaty | b5548c4 | 2021-04-14 15:05:54 +0200 | [diff] [blame] | 29 | |
| 30 | SHIP_FILE=$UPRJ_ROOT/gds/caravel.gds |
| 31 | |
| 32 | if test -f "$SHIP_FILE"; then |
| 33 | exit 0 |
| 34 | else |
manarabdelaty | eb2b903 | 2021-04-19 12:31:47 +0200 | [diff] [blame] | 35 | exit 2 |
manarabdelaty | b5548c4 | 2021-04-14 15:05:54 +0200 | [diff] [blame] | 36 | fi |