blob: 865285f7524fab9ff638d5d8cef17daa8686fe3f [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)
manarabdelatyeb2b9032021-04-19 12:31:47 +020018export CARAVEL_ROOT=$(pwd)/caravel
manarabdelatyb5548c42021-04-14 15:05:54 +020019cd ..
20export PDK_ROOT=$(pwd)/pdks
21export IMAGE_NAME=efabless/openlane:$OPENLANE_TAG
22export USER_ID=00000001
23
24cd $UPRJ_ROOT
25
26LOG_FILE=out.log
manarabdelaty740194b2021-04-19 13:05:07 +020027docker 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;"
manarabdelatyb5548c42021-04-14 15:05:54 +020028
29cnt=$(grep "Done" $LOG_FILE -s | wc -l)
30
31if [[ $cnt -ne 3 ]]; then
32 exit 2;
33fi
34
35exit 0