Update .woodpecker.json
All checks were successful
ci/woodpecker/push/woodpecker.json Pipeline was successful

This commit is contained in:
Rebekah 2024-06-19 09:59:51 -04:00
parent 5641fd7990
commit fdae4859ef

View File

@ -12,14 +12,14 @@
"apk add build-base cmake glew-dev libx11-dev libxext-dev libxfixes-dev",
"echo Make build directory",
"mkdir build",
"mkdir build-alpine",
"echo CMake build make-files",
"cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/",
"cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build-alpine/",
"echo Build Project",
"cmake --build build/",
"cmake --install build/"
"cmake --build build-alpine/",
"cmake --install build-alpine/"
]
},
"ubuntu-build": {
@ -34,14 +34,14 @@
"apt install -y build-essential cmake libglew-dev libx11-dev libxext-dev libxfixes-dev",
"echo Make build directory",
"mkdir build",
"mkdir build-ubuntu",
"echo CMake build make-files",
"cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/",
"cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build-ubuntu/",
"echo Build Project",
"cmake --build build/",
"cmake --install build/"
"cmake --build build-ubuntu/",
"cmake --install build-ubuntu/"
]
}
}