Updating CI build flow to pick yosys from install folder
This commit is contained in:
parent
98d33d6c9f
commit
922ec41348
|
@ -138,7 +138,7 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
# Execute the build. You can specify a specific target with "--target <NAME>"
|
# Execute the build. You can specify a specific target with "--target <NAME>"
|
||||||
run: |
|
run: |
|
||||||
cmake --build . --config $BUILD_TYPE
|
source openfpga.sh && cmake --build . --config $BUILD_TYPE
|
||||||
|
|
||||||
# Check the cache size and see if it is over the limit
|
# Check the cache size and see if it is over the limit
|
||||||
- name: Check ccache size
|
- name: Check ccache size
|
||||||
|
@ -157,12 +157,12 @@ jobs:
|
||||||
openfpga/openfpga
|
openfpga/openfpga
|
||||||
vpr/libvpr.a
|
vpr/libvpr.a
|
||||||
vpr/vpr
|
vpr/vpr
|
||||||
yosys/share/
|
yosys/install/share/
|
||||||
yosys/yosys
|
yosys/install/bin/yosys
|
||||||
yosys/yosys-abc
|
yosys/install/bin/yosys-abc
|
||||||
yosys/yosys-config
|
yosys/install/bin/yosys-config
|
||||||
yosys/yosys-filterlib
|
yosys/install/bin/yosys-filterlib
|
||||||
yosys/yosys-smtbmc
|
yosys/install/bin/yosys-smtbmc
|
||||||
openfpga_flow
|
openfpga_flow
|
||||||
openfpga.sh
|
openfpga.sh
|
||||||
docker_distribution:
|
docker_distribution:
|
||||||
|
@ -225,11 +225,11 @@ jobs:
|
||||||
chmod +x ace2/ace
|
chmod +x ace2/ace
|
||||||
chmod +x openfpga/openfpga
|
chmod +x openfpga/openfpga
|
||||||
chmod +x vpr/vpr
|
chmod +x vpr/vpr
|
||||||
chmod +x yosys/yosys
|
chmod +x yosys/install/bin/yosys
|
||||||
chmod +x yosys/yosys-abc
|
chmod +x yosys/install/bin/yosys-abc
|
||||||
chmod +x yosys/yosys-config
|
chmod +x yosys/install/bin/yosys-config
|
||||||
chmod +x yosys/yosys-filterlib
|
chmod +x yosys/install/bin/yosys-filterlib
|
||||||
chmod +x yosys/yosys-smtbmc
|
chmod +x yosys/install/bin/yosys-smtbmc
|
||||||
- name: ${{matrix.config.name}}_GCC-8_(Ubuntu 18.04)
|
- name: ${{matrix.config.name}}_GCC-8_(Ubuntu 18.04)
|
||||||
shell: bash
|
shell: bash
|
||||||
run: source openfpga.sh && source openfpga_flow/regression_test_scripts/${{matrix.config.name}}.sh
|
run: source openfpga.sh && source openfpga_flow/regression_test_scripts/${{matrix.config.name}}.sh
|
||||||
|
|
Loading…
Reference in New Issue