Skip to content

Commit

Permalink
Updated CI script to correctly report installed Yosys version
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
  • Loading branch information
mkurc-ant committed Mar 29, 2022
1 parent 22efa39 commit 9b0aa6a
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,23 @@ end_section
#Install yosys
start_section Install-Yosys
(
echo '=========================='
echo 'Making env with yosys and Surelog'
echo '=========================='
echo '================================='
echo 'Making env with Yosys and Surelog'
echo '================================='
make env
make enter
echo $(which yosys)
echo $(which yosys-config)
echo $(yosys-config --datdir)
source env/conda/bin/activate yosys-plugins
conda list
)
end_section

##########################################################################

start_section Yosys-Version
(
source env/conda/bin/activate yosys-plugins
echo $(which yosys)
echo $(which yosys-config)
echo $(yosys --version)
echo $(yosys-config --datdir)
)
end_section

0 comments on commit 9b0aa6a

Please sign in to comment.