1
0
mirror of https://github.com/ssloy/tinyraytracer.git synced 2025-01-29 03:47:36 +01:00
tinyraytracer/.gitpod.yml

13 lines
206 B
YAML
Raw Permalink Normal View History

2019-01-22 07:24:00 +00:00
image:
file: Dockerfile
tasks:
- command: >
mkdir --parents build &&
cd build &&
cmake .. &&
make &&
./tinyraytracer &&
pnmtopng out.ppm > out.png &&
open out.png &&
cd ..