Signed-off-by: Rebekah <oneechanhax@obama-hospital@oneechan.xyz>
This commit is contained in:
parent
30659e1877
commit
5f1ce2d3bb
35
.woodpecker.json
Normal file
35
.woodpecker.json
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
"steps": [
|
||||
{
|
||||
"name": "Install development packages",
|
||||
"image": "ubuntu",
|
||||
"commands": [
|
||||
"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"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user