builds: drop

This commit is contained in:
Jeremy Baxter 2025-04-30 14:03:50 +12:00
parent 47045188fb
commit 06443cde45
2 changed files with 0 additions and 55 deletions

View file

@ -1,34 +0,0 @@
---
image: nixos/unstable
packages:
- nixos.dmd
- nixos.curl
- nixos.gnumake
- nixos.ldc
environment:
NIX_CONFIG: "experimental-features = nix-command flakes"
sources:
- "https://git.sr.ht/~jeremy/esv"
tasks:
- build-dmd: |
cd esv
./configure -c dmd
make all clean
- build-ldc: |
cd esv
./configure -c ldc2
make
- build-ldc-1_30_0: |
nix build -o ldc-1.30.0 --accept-flake-config github:PetarKirov/dlang.nix#ldc-1_30_0
cd esv
./configure -c $(readlink ../ldc-1.30.0)/bin/ldc2
make
- install: |
nix profile install ./esv
- test: |
cd esv
./configure -t
make clean all
./esv
# very basic test :)
esv Matthew 5-7 >/dev/null

View file

@ -1,21 +0,0 @@
---
image: openbsd/7.4
packages:
- curl
- ldc
sources:
- "https://git.sr.ht/~jeremy/esv"
tasks:
- build: |
cd esv
./configure
make
- install: |
doas make -C esv install
- test: |
cd esv
./configure -t
make clean all
./esv
# very basic test :)
esv Matthew 5-7 >/dev/null