tinyraytracer/.gitpod.yml

12 lines
172 B
YAML
Raw Permalink Normal View History

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