Skip to content

Commit 28a99d0

Browse files
authored
FPGA: fix incorrect paths in Windows CI steps (#1445)
Some FPGA samples had incorrect path in their CI steps in the sample.json file.
1 parent 918907b commit 28a99d0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

DirectProgramming/C++SYCL_FPGA/Tutorials/Features/experimental/hostpipes/sample.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"id": "fpga_emu",
4747
"steps": [
4848
"icpx --version",
49-
"cd ../../..",
49+
"cd ../../../..",
5050
"mkdir build",
5151
"cd build",
5252
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/experimental/hostpipes",
@@ -58,7 +58,7 @@
5858
"id": "report",
5959
"steps": [
6060
"icpx --version",
61-
"cd ../../..",
61+
"cd ../../../..",
6262
"mkdir build",
6363
"cd build",
6464
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/experimental/hostpipes",

DirectProgramming/C++SYCL_FPGA/Tutorials/Features/experimental/latency_control/sample.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"id": "fpga_emu",
4747
"steps": [
4848
"icpx --version",
49-
"cd ../../..",
49+
"cd ../../../..",
5050
"mkdir build",
5151
"cd build",
5252
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/experimental/latency_control",
@@ -58,7 +58,7 @@
5858
"id": "report",
5959
"steps": [
6060
"icpx --version",
61-
"cd ../../..",
61+
"cd ../../../..",
6262
"mkdir build",
6363
"cd build",
6464
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/experimental/latency_control",

DirectProgramming/C++SYCL_FPGA/Tutorials/Features/optimization_levels/minimum_latency/sample.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"id": "fpga_emu",
4747
"steps": [
4848
"icpx --version",
49-
"cd ../../..",
49+
"cd ../../../..",
5050
"mkdir build",
5151
"cd build",
5252
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/optimization_levels/minimum_latency",
@@ -58,7 +58,7 @@
5858
"id": "report",
5959
"steps": [
6060
"icpx --version",
61-
"cd ../../..",
61+
"cd ../../../..",
6262
"mkdir build",
6363
"cd build",
6464
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/optimization_levels/minimum_latency",

0 commit comments

Comments
 (0)