[CI] cleanup redirections
diff --git a/.travisCI/openlane_build/build_openlane.sh b/.travisCI/openlane_build/build_openlane.sh index cbd4edd..d9c57fb 100644 --- a/.travisCI/openlane_build/build_openlane.sh +++ b/.travisCI/openlane_build/build_openlane.sh
@@ -14,9 +14,13 @@ # limitations under the License. # SPDX-License-Identifier: Apache-2.0 -export OPENLANE_ROOT=$(pwd)/../openlane -export PDK_ROOT=$(pwd)/../pdks +export TARGET_PATH=$(pwd) +cd .. +export PDK_ROOT=$(pwd)/pdks +export OPENLANE_ROOT=$(pwd)/openlane +cd $TARGET_PATH export OPENLANE_TAG=staging +export IMAGE_NAME=openlane:$OPENLANE_TAG cd openlane make openlane exit 0
diff --git a/.travisCI/openlane_build/run_macro.sh b/.travisCI/openlane_build/run_macro.sh index c672188..3aee691 100644 --- a/.travisCI/openlane_build/run_macro.sh +++ b/.travisCI/openlane_build/run_macro.sh
@@ -13,10 +13,13 @@ # See the License for the specific language governing permissions and # limitations under the License. # SPDX-License-Identifier: Apache-2.0 -export RUN_WRAPPER=$(pwd)/.travisCI/utils/run_wrapper.sh +export TARGET_PATH=$(pwd) +export RUN_WRAPPER=$TARGET_PATH/.travisCI/utils/run_wrapper.sh export OPENLANE_TAG=staging -export PDK_ROOT=$(pwd)/../pdks -export OPENLANE_ROOT=$(pwd)/../openlane +cd .. +export PDK_ROOT=$(pwd)/pdks +export OPENLANE_ROOT=$(pwd)/openlane +cd $TARGET_PATH export TARGET_MACRO=$1 export logFile=$TARGET_MACRO.run.log make uncompress
diff --git a/.travisCI/openlane_build/run_make_ship.sh b/.travisCI/openlane_build/run_make_ship.sh index 29da890..c058d65 100644 --- a/.travisCI/openlane_build/run_make_ship.sh +++ b/.travisCI/openlane_build/run_make_ship.sh
@@ -13,11 +13,12 @@ # See the License for the specific language governing permissions and # limitations under the License. # SPDX-License-Identifier: Apache-2.0 - -export OPENLANE_TAG=staging -export PDK_ROOT=$(pwd)/../pdks -export OPENLANE_ROOT=$(pwd)/../openlane export CARAVEL_PATH=$(pwd) +cd .. +export PDK_ROOT=$(pwd)/pdks +export OPENLANE_ROOT=$(pwd)/openlane +cd $CARAVEL_PATH +export OPENLANE_TAG=staging export IMAGE_NAME=openlane:$OPENLANE_TAG rm -rf maglef/user_proj_example.mag
diff --git a/.travisCI/openlane_build/travisyml b/.travisCI/openlane_build/travisyml deleted file mode 100644 index 06cf4df..0000000 --- a/.travisCI/openlane_build/travisyml +++ /dev/null
@@ -1,10 +0,0 @@ - - name: "The Full User Build Test" - install: - - bash .travisCI/utils/bash_run_wrapper.sh .travisCI/utils/pdkBuild.sh 0 - - sh .travisCI/precheck/precheckBuild.sh 1 - - bash .travisCI/utils/bash_run_wrapper.sh .travisCI/openlane_build/build_openlane.sh - script: - - bash .travisCI/utils/bash_run_wrapper.sh .travisCI/openlane_build/run_macro.sh user_proj_example - - bash .travisCI/utils/bash_run_wrapper.sh .travisCI/openlane_build/run_macro.sh user_project_wrapper - - bash .travisCI/utils/bash_run_wrapper.sh .travisCI/openlane_build/run_make_ship.sh - - bash .travisCI/precheck/run-precheck.sh