diff --git a/.woodpecker/build.yaml b/.woodpecker/debian.yaml similarity index 52% rename from .woodpecker/build.yaml rename to .woodpecker/debian.yaml index 11056fa..f722c9e 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/debian.yaml @@ -6,5 +6,7 @@ steps: image: debian:13 pull: true commands: - - apt update && apt full-upgrade && apt install -y ocaml libfindlib-ocaml-dev libcontainers-ocaml-dev ocaml-dune menhir + - apt update && apt full-upgrade + - apt install -y ocaml libfindlib-ocaml-dev ocaml-dune menhir - dune build + - dune exec ollisp diff --git a/.woodpecker/fedora.yaml b/.woodpecker/fedora.yaml new file mode 100644 index 0000000..cb7ae31 --- /dev/null +++ b/.woodpecker/fedora.yaml @@ -0,0 +1,12 @@ +when: + event: [push, cron, pull_request, manual] + +steps: + - name: Build on Fedora + image: fedora:43 + pull: true + commands: + - dnf update + - dnf install -y ocaml ocaml-findlib menhir dune + - dune build + - dune exec ollisp