b712f59d2d
FossilOrigin-Name: 855f52d4219f3f11d69a3351eed12ab4ebe16d832262d57ce0a37eec6c7000e0
31 lines
677 B
YAML
31 lines
677 B
YAML
image: debian/unstable
|
|
arch: amd64
|
|
packages:
|
|
- curl
|
|
sources:
|
|
- https://git.sr.ht/~crc_/retroforth
|
|
tasks:
|
|
- build: |
|
|
cd retroforth
|
|
make
|
|
- repl: |
|
|
cd retroforth
|
|
make bin/retro-repl
|
|
#- compiler: |
|
|
# cd retroforth
|
|
# make bin/retro-compiler
|
|
- install: |
|
|
cd retroforth
|
|
sudo make install
|
|
- test: |
|
|
cd retroforth
|
|
retro example/1D-Cellular-Automota.retro
|
|
retro example/sea-level-rise.retro
|
|
#- test-compiler: |
|
|
# cd retroforth
|
|
# curl http://forth.works/share/17af8e4329d13fea01e7afcdf3c9aefd -o hello.retro
|
|
# ./bin/retro-compiler hello.retro hello
|
|
# ./a.out
|
|
- check-missing: |
|
|
cd retroforth
|
|
retro tools/glossary.retro missing
|