7268ac9875
Since we need to set HOME and PATH, let's do that in a central place rather than scattering it around by having all of our entrypoint scripts source the `libbuild.sh` shell "library". Move the CoreOS CI entrypoint into a script like the others.
10 lines
129 B
Bash
Executable File
10 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
|
|
ci/installdeps.sh
|
|
ci/install-extra-builddeps.sh
|
|
ci/build.sh
|