Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.devtools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.devtools
Merge requests
!331
[doc] Moves CI installation information to bob/private>
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[doc] Moves CI installation information to bob/private>
move-ci-install-to-bob-private
into
master
Overview
0
Commits
1
Pipelines
1
Changes
15
Merged
André Anjos
requested to merge
move-ci-install-to-bob-private
into
master
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
15
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
d39769ba
1 commit,
2 years ago
15 files
+
0
−
726
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
doc/macos-ci-install/admin-install.sh deleted
100755 → 0
+
0
−
37
Options
#!/usr/bin/env bash
# Installs basic software on a fresh macOS installation that requires admin
# priviledges.
# VARIABLES - edit to your requirements
MACOS_VERSION
=
"
${
1
}
"
USERNAME
=
"
${
2
}
"
# --------------------
# Don't edit past this
# --------------------
# gets the current path leading to this script
DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
>
/dev/null
&&
pwd
)
"
echo
"Setting up date and time..."
${
DIR
}
/datetime.sh
echo
"Updating the current system and disabling automatic updates..."
${
DIR
}
/system-update.sh
echo
"Installing Xcode Command-Line (CLI) tools..."
${
DIR
}
/xcode-cli-tools.sh
echo
"Installing macOS
${
MACOS_VERSION
}
SDK..."
${
DIR
}
/install-sdk.sh
${
MACOS_VERSION
}
echo
"Setting up special idiap.ch host..."
${
DIR
}
/idiap-host.sh
echo
"Installing homebrew and build-time dependencies..."
:w
${
DIR
}
/setup-paths.sh
${
DIR
}
/install-homebrew.sh
${
USER
}
echo
"Installing (or updating) gitlab runner..."
{
DIR
}
/install-gitlab-runner.sh
Loading