-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
801 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
# | ||
# Entrypoint from CI jobs | ||
# Only valid assumptions: | ||
# - apt sources.list are valid | ||
# - first param is path to grml-live checkout | ||
# - remaining params are job config, so to say | ||
set -x | ||
GRML_LIVE_PATH=$1 | ||
PYTHONPATH="$GRML_LIVE_PATH"/build-driver | ||
echo -e "\e[0Ksection_start:$(date +%s):startupdeps[collapsed=true]\r\e[0KInstall dependencies for build.py" | ||
apt satisfy -q -y --no-install-recommends 'python3-minimal, python3-yaml' | ||
echo -e "\e[0Ksection_end:$(date +%s):startupdeps\r\e[0K" | ||
exec "$PYTHONPATH"/build.py "$@" |
Oops, something went wrong.