[Test] Bug fix in wrong paths to call regression test scripts

This commit is contained in:
tangxifan 2020-11-24 12:37:42 -07:00
parent 87f2fa7a90
commit 68827a53b6
1 changed files with 5 additions and 5 deletions

View File

@ -124,7 +124,7 @@ jobs:
# Execute the test.
run: |
if ("${{matrix.config.name}}" STRQUAL "Basic Regression Tests: GCC-8 (Ubuntu 18.04)")
source basic_reg_test.sh
source ${{runner.workspace}}/.github/workflows/basic_reg_test.sh
endif()
- name: FPGA-Verilog Regression Tests
@ -133,7 +133,7 @@ jobs:
# Execute the test.
run: |
if ("${{matrix.config.name}}" STRQUAL "FPGA-Verilog Regression Tests: GCC-8 (Ubuntu 18.04)")
source fpga_verilog_reg_test.sh
source ${{runner.workspace}}/.github/workflows/fpga_verilog_reg_test.sh
endif()
- name: FPGA-Bitstream Regression Tests
@ -142,7 +142,7 @@ jobs:
# Execute the test.
run: |
if ("${{matrix.config.name}}" STRQUAL "FPGA-Bitstream Regression Tests: GCC-8 (Ubuntu 18.04)")
source fpga_bitstream_reg_test.sh
source ${{runner.workspace}}/.github/workflows/fpga_bitstream_reg_test.sh
endif()
- name: FPGA-SDC Regression Tests
@ -151,7 +151,7 @@ jobs:
# Execute the test.
run: |
if ("${{matrix.config.name}}" STRQUAL "FPGA-SDC Regression Tests: GCC-8 (Ubuntu 18.04)")
source fpga_sdc_reg_test.sh
source ${{runner.workspace}}/.github/workflows/fpga_sdc_reg_test.sh
endif()
- name: FPGA-SPICE Regression Tests
@ -160,5 +160,5 @@ jobs:
# Execute the test.
run: |
if ("${{matrix.config.name}}" STRQUAL "FPGA-SPICE Regression Tests: GCC-8 (Ubuntu 18.04)")
source fpga_spice_reg_test.sh
source ${{runner.workspace}}/.github/workflows/fpga_spice_reg_test.sh
endif()