mirror of
https://github.com/PDP-10/its.git
synced 2026-01-13 15:27:28 +00:00
18 lines
317 B
Bash
18 lines
317 B
Bash
if test -n "$GITLAB_CI"; then
|
|
sudo() {
|
|
"$@"
|
|
}
|
|
fi
|
|
|
|
install_linux() {
|
|
sudo apt-get update -myq
|
|
sudo apt-get install -my expect
|
|
# For GitLab CI
|
|
sudo apt-get install -my git make gcc libncurses-dev autoconf
|
|
if test "$EMULATOR" = simh; then
|
|
sudo apt-get install -y simh
|
|
fi
|
|
}
|
|
|
|
"$1"
|