Merge master into 2nd-cufr branch (#96) #408
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2023-2024, Advanced Micro Devices, Inc. All rights reserved. | |
# | |
# Author: Zak Nafziger, AMD | |
# | |
# SPDX-License-Identifier: MIT | |
# | |
name: wirelength_analyzer | |
on: | |
push: | |
pull_request: | |
jobs: | |
unittests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
check-latest: true | |
cache: 'pip' | |
- run: | |
make setup-wirelength_analyzer | |
- run: | |
make -C wirelength_analyzer run-unittests |