From 6e8e345388b129b5afd5e1dba53ffef2e5f4410f Mon Sep 17 00:00:00 2001 From: Emin Arslan Date: Fri, 16 Jan 2026 13:15:09 +0300 Subject: [PATCH] ci: change the debian and fedora workflows to not ask for user input --- .woodpecker/debian.yaml | 2 +- .woodpecker/fedora.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker/debian.yaml b/.woodpecker/debian.yaml index 2b0dc09..e040498 100644 --- a/.woodpecker/debian.yaml +++ b/.woodpecker/debian.yaml @@ -6,7 +6,7 @@ steps: image: debian:13 pull: true commands: - - apt update && apt full-upgrade + - apt update && apt full-upgrade -y - 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 index cb7ae31..576b07e 100644 --- a/.woodpecker/fedora.yaml +++ b/.woodpecker/fedora.yaml @@ -6,7 +6,7 @@ steps: image: fedora:43 pull: true commands: - - dnf update + - dnf update -y - dnf install -y ocaml ocaml-findlib menhir dune - dune build - dune exec ollisp