From cc80d862250790ae9818a4658a655fa9eec8f5f1 Mon Sep 17 00:00:00 2001 From: Rebekah Date: Tue, 18 Jun 2024 21:06:27 -0400 Subject: [PATCH] Update .woodpecker.json Signed-off-by: Rebekah --- .woodpecker.json | 40 ++++++++++++---------------------------- 1 file changed, 12 insertions(+), 28 deletions(-) diff --git a/.woodpecker.json b/.woodpecker.json index 0ab4fda..70b0f32 100644 --- a/.woodpecker.json +++ b/.woodpecker.json @@ -1,35 +1,19 @@ { - "steps": [ - { - "name": "Install development packages", + "steps": { + "build": { "image": "ubuntu", "commands": [ + "echo Install development packages", "apt update", - "apt install -y build-essential cmake libglew-dev libx11-dev libxext-dev libxfixes-dev" - ] - }, - { - "name": "Make build directory", - "image": "ubuntu", - "commands": [ - "mkdir build" - ] - }, - { - "name": "CMake build make-files", - "image": "ubuntu", - "commands": [ - "cd build", - "cmake -DCMAKE_BUILD_TYPE=Release ../" - ] - }, - { - "name": "Build Project", - "image": "ubuntu", - "commands": [ - "cd build", - "make" + "apt install -y build-essential cmake libglew-dev libx11-dev libxext-dev libxfixes-dev", + "echo Make build directory", + "mkdir build", + "echo CMake build make-files", + "cd build", + "cmake -DCMAKE_BUILD_TYPE=Release ../", + "echo Build Project", + "cmake -B ./" ] } - ] + } } \ No newline at end of file