-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvagga.yaml
More file actions
28 lines (25 loc) · 719 Bytes
/
vagga.yaml
File metadata and controls
28 lines (25 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
containers:
basic:
setup:
- !Ubuntu trusty
- !UbuntuUniverse
- !Install [binutils, ocl-icd-libopencl1, libltdl-dev, mesa-common-dev, opencl-headers, clang, make]
- !Install [gdb, llvm-dev, libclang-dev, pkg-config, libhwloc-dev]
- !TarInstall
url: http://pocl.sourceforge.net/downloads/pocl-0.11.tar.gz
- !EnsureDir /etc/OpenCL/vendors
- !Sh |
cp /usr/etc/OpenCL/vendors/pocl.icd /etc/OpenCL/vendors/pocl.icd
commands:
build: !Command
description: Run make
container: basic
run: make
run: !Command
description: Run make
container: basic
run: ./hello
clean: !Command
description: Run make
container: basic
run: make clean