19 lines
410 B
YAML
19 lines
410 B
YAML
---
|
|
image: openbsd/latest
|
|
sources:
|
|
- "https://git.sr.ht/~jeremy/callisto"
|
|
tasks:
|
|
- build-clang: |
|
|
cd callisto
|
|
./configure -c clang
|
|
make
|
|
make clean
|
|
- build-gcc: |
|
|
doas pkg_add "$(pkg_info -Q gcc | grep -E '^gcc-1.+' | head -n1)"
|
|
cd callisto
|
|
./configure -c egcc
|
|
make
|
|
- install: |
|
|
doas make -Ccallisto install
|
|
- test: |
|
|
csto callisto/test.lua
|