mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 12:21:03 +00:00
12 lines
230 B
Go
12 lines
230 B
Go
|
package model
|
||
|
|
||
|
// ResourceLimit is the resource limit to set on pipeline steps
|
||
|
type ResourceLimit struct {
|
||
|
MemSwapLimit int64
|
||
|
MemLimit int64
|
||
|
ShmSize int64
|
||
|
CPUQuota int64
|
||
|
CPUShares int64
|
||
|
CPUSet string
|
||
|
}
|