Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 0 additions & 98 deletions .ci/samples_linux.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,65 @@
"languages": [{"cpp": {"properties": {"projectOptions": [{"projectType": "makefile"}]}}}],
"targetDevice": ["CPU", "GPU", "FPGA"],
"os": ["linux", "windows"],
"builder": ["ide", "make"]
"builder": ["ide", "make"],
"ciTests": {
"linux": [
{
"id": "cpu_usm",
"steps": [
"make all",
"make run",
"make clean"
]
},
{
"id": "cpu_buffers",
"steps": [
"make build_buffers",
"make run_buffers",
"make clean"
]
},
{
"id": "fpga_emu_buffers",
"steps": [
"make fpga_emu -f Makefile.fpga",
"make run_emu -f Makefile.fpga",
"make clean -f Makefile.fpga"
]
},
{
"id": "fpga_report_buffers",
"steps": [
"make report -f Makefile.fpga"
]
}
],
"windows": [
{
"id": "cpu_usm",
"steps": [
"nmake -f Makefile.win",
"nmake -f Makefile.win run",
"nmake -f Makefile.win clean"
]
},
{
"id": "cpu_buffers",
"steps": [
"nmake -f Makefile.win build_buffers",
"nmake -f Makefile.win run_buffers",
"nmake -f Makefile.win clean"
]
},
{
"id": "fpga_emu_buffers",
"steps": [
"nmake -f Makefile.win.fpga",
"nmake -f Makefile.win.fpga run",
"nmake -f Makefile.win.fpga clean"
]
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,66 @@
"languages": [{"cpp": {"properties": {"projectOptions": [{"projectType": "makefile"}]}}}],
"targetDevice": ["CPU", "GPU", "FPGA"],
"os": ["linux", "windows"],
"builder": ["ide", "make"]
"builder": ["ide", "make"],
"ciTests": {
"linux": [
{
"id": "cpu_buffers",
"steps": [
"make all",
"make run",
"make clean"
]
},
{
"id": "cpu_usm",
"steps": [
"make build_usm",
"make run_usm",
"make clean"
]
},
{
"id": "fpga_emu_buffers",
"steps": [
"make fpga_emu -f Makefile.fpga",
"make run_emu -f Makefile.fpga",
"make clean -f Makefile.fpga"
]
},
{
"id": "fpga_report_buffers",
"steps": [
"make report -f Makefile.fpga",
"make clean -f Makefile.fpga"
]
}
],
"windows": [
{
"id": "cpu_buffers",
"steps": [
"nmake -f Makefile.win",
"nmake -f Makefile.win run",
"nmake -f Makefile.win clean"
]
},
{
"id": "cpu_usm",
"steps": [
"nmake -f Makefile.win build_usm",
"nmake -f Makefile.win run_usm",
"nmake -f Makefile.win clean"
]
},
{
"id": "fpga_emu_buffers",
"steps": [
"nmake -f Makefile.win.fpga",
"nmake -f Makefile.win.fpga run",
"nmake -f Makefile.win.fpga clean"
]
}
]
}
}