26 lines
461 B
YAML
26 lines
461 B
YAML
---
|
|
image: alpine/edge
|
|
packages:
|
|
- clang
|
|
- clang-extra-tools
|
|
- gcc
|
|
sources:
|
|
- "https://git.sr.ht/~jeremy/callisto"
|
|
tasks:
|
|
- build-clang: |
|
|
cd callisto
|
|
./configure -c clang
|
|
make
|
|
make clean
|
|
- build-gcc: |
|
|
cd callisto
|
|
./configure -c gcc
|
|
make
|
|
- install: |
|
|
sudo make -Ccallisto install
|
|
- test: |
|
|
csto callisto/test.lua
|
|
- format: |
|
|
cd callisto
|
|
make format
|
|
git diff --exit-code
|