Update .woodpecker.json
Some checks failed
ci/woodpecker/push/woodpecker.json Pipeline failed

This commit is contained in:
Rebekah 2024-06-19 09:37:43 -04:00
parent 5440d6f6b1
commit d87b2b6ea1

View File

@ -1,18 +1,45 @@
{
"steps": {
"build": {
"alpine-build": {
"image": "alpine",
"when": {
"branch": ["main", "woodpecker"],
"event": ["push", "pull_request"]
},
"commands": [
"echo Install development packages",
"apk update",
"apk add build-base cmake glew-dev libx11-dev libxext-dev libxfixes-dev",
"echo Make build directory",
"mkdir build",
"echo CMake build make-files",
"cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/",
"echo Build Project",
"cmake --build build/",
"cmake --install build/"
]
},
"ubuntu-build": {
"image": "ubuntu",
"when": {
"branch": ["main", "woodpecker"],
"event": ["push", "pull_request"]
},
"commands": [
"echo Install development packages",
"apt update",
"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",
"cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/",
"echo Build Project",
"cmake --build build/",
"cmake --install build/"