initial commit
This commit is contained in:
21
.ci/build-all.sh
Executable file
21
.ci/build-all.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
# (c) 2024, Konstantin Demin
|
||||
set -ef
|
||||
|
||||
[ -z "${CI_DEBUG}" ] || set -xv
|
||||
|
||||
r=0
|
||||
|
||||
TARGET_PLATFORMS=$(printf '%s' "${TARGET_PLATFORMS:?}" | tr ',' ' ')
|
||||
for TARGET_PLATFORM in ${TARGET_PLATFORMS} ; do
|
||||
export TARGET_PLATFORM
|
||||
|
||||
. .ci/envsh.build
|
||||
.ci/build.sh || r=$?
|
||||
[ "$r" = 0 ] || break
|
||||
done
|
||||
|
||||
make ci-clean
|
||||
|
||||
exit "$r"
|
Reference in New Issue
Block a user