diff --git a/.github/workflows/fuzz-test.yml b/.github/workflows/fuzz-test.yml index 4909764b..a85e89f4 100644 --- a/.github/workflows/fuzz-test.yml +++ b/.github/workflows/fuzz-test.yml @@ -50,20 +50,19 @@ jobs: ninja -v - name: Fuzz testing run: | - cd fuzz_testing/script - ls ../test + ls build/fuzz_testing + cd build/fuzz_testing/fuzz_testing/script NUM_OF_ITERATIONS=${{ github.event.inputs.num_of_iterations }} # This if block is only used during testing, because if this workflow is triggered via pull_request, ${{ github.event.inputs.num_of_iterations }} would be empty if [ -z "${NUM_OF_ITERATIONS}" ]; then NUM_OF_ITERATIONS=1 fi python3 fuzz_test.py --all -n $NUM_OF_ITERATIONS - cd ../../../.. - name: Upload results uses: actions/upload-artifact@v3 with: name: fpga-runtime-for-opencl-${{ github.sha }}-fuzz-test-results-${{ github.run_id }} path: | - /__w/fpga-runtime-for-opencl/fpga-runtime-for-opencl/fuzz_testing/results/results.yml - /__w/fpga-runtime-for-opencl/fpga-runtime-for-opencl/fuzz_testing/test_outputs + /__w/fpga-runtime-for-opencl/fpga-runtime-for-opencl/build/fuzz_testing/fuzz_testing/results/results.yml + /__w/fpga-runtime-for-opencl/fpga-runtime-for-opencl/build/fuzz_testing/fuzz_testing/test_outputs if-no-files-found: error