Peter Surda
5fba2af5c6
Some checks failed
buildbot/travis_bionic Build done.
- docker support was deprecated
33 lines
442 B
Bash
Executable File
33 lines
442 B
Bash
Executable File
#!/bin/bash
|
|
|
|
trusty()
|
|
{
|
|
return
|
|
}
|
|
|
|
xenial()
|
|
{
|
|
return
|
|
}
|
|
|
|
bionic()
|
|
{
|
|
cd /usr/src/buildbot-scripts/docker/bionic || return
|
|
cp ../../travis2bash.sh .
|
|
docker build -t pybm-build-bionic .
|
|
}
|
|
|
|
focal()
|
|
{
|
|
return
|
|
}
|
|
|
|
cores=$(grep -E '^cpu cores' /proc/cpuinfo |head -1|cut -d: -f2|tr -d '[:space:]')
|
|
mem=$(sed -E 's/^MemTotal: +([0-9]+) kB/\1/p;d' < /proc/meminfo)
|
|
mempercore=$(((mem/1024-4096)/cores))
|
|
|
|
trusty
|
|
xenial
|
|
bionic
|
|
focal
|