aboutsummaryrefslogtreecommitdiffhomepage
path: root/.builds/freebsd.yml
blob: 70febddf0886086efc0874275e7d6222574f20f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: freebsd/14.x
sources:
- https://git.sr.ht/~bakpakin/janet
packages:
- gmake
tasks:
- build: |
    cd janet
    gmake
    gmake test
    sudo gmake install
    sudo gmake uninstall
- build-sanitizers: |
    cd janet
    CFLAGS="-g -O2 -fsanitize=address,undefined" gmake
    gmake test
    sudo gmake install
    sudo gmake uninstall