diff --git a/DirectProgramming/DPC++/DenseLinearAlgebra/simple-add/sample.json b/DirectProgramming/DPC++/DenseLinearAlgebra/simple-add/sample.json index 932eb12097..00ac76b848 100644 --- a/DirectProgramming/DPC++/DenseLinearAlgebra/simple-add/sample.json +++ b/DirectProgramming/DPC++/DenseLinearAlgebra/simple-add/sample.json @@ -6,5 +6,57 @@ "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": "fpga_emu_buffers", + "steps": [ + "nmake -f Makefile.win.fpga", + "nmake -f Makefile.win.fpga run", + "nmake -f Makefile.win.fpga clean" + ] + } + ] + } } diff --git a/DirectProgramming/DPC++/DenseLinearAlgebra/vector-add/sample.json b/DirectProgramming/DPC++/DenseLinearAlgebra/vector-add/sample.json index 0698a5fb5b..e0a455854a 100644 --- a/DirectProgramming/DPC++/DenseLinearAlgebra/vector-add/sample.json +++ b/DirectProgramming/DPC++/DenseLinearAlgebra/vector-add/sample.json @@ -6,5 +6,25 @@ "languages": [{"cpp": {"properties": {"projectOptions": [{"projectType": "makefile"}]}}}], "targetDevice": ["CPU", "GPU", "FPGA"], "os": ["linux", "windows"], - "builder": ["ide", "make"] + "builder": ["ide", "make"], + "ciTests": { + "linux": [ + { + "steps": [ + "make all", + "make run", + "make clean" + ] + } + ], + "windows": [ + { + "steps": [ + "nmake -f Makefile.win", + "nmake -f Makefile.win run", + "nmake -f Makefile.win clean" + ] + } + ] + } } diff --git a/README.md b/README.md index 4d2106a4ab..7a66a482b6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # oneAPI-samples This is the readme. +A test update here.