tinyraytracer/.gitpod.yml

13 lines
206 B
YAML
Raw Normal View History

2019-01-26 00:33:30 +08:00
image:
file: Dockerfile
tasks:
- command: >
mkdir --parents build &&
cd build &&
cmake .. &&
make &&
./tinyraytracer &&
pnmtopng out.ppm > out.png &&
open out.png &&
cd ..