Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
technical-testing
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
work
technical-testing
Merge requests
!6
Resolve "Add gitlab CI automatic build"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add gitlab CI automatic build"
1-add-gitlab-ci-automatic-build
into
master
Overview
0
Commits
1
Pipelines
8
Changes
4
Merged
Benoît Harrault
requested to merge
1-add-gitlab-ci-automatic-build
into
master
4 years ago
Overview
0
Commits
1
Pipelines
8
Changes
4
Expand
Closes
#1 (closed)
Edited
4 years ago
by
Benoît Harrault
0
0
Merge request reports
Compare
master
version 7
e38ab1fd
4 years ago
version 6
d85293c0
4 years ago
version 5
f7e83980
4 years ago
version 4
2f366990
4 years ago
version 3
c6d232e3
4 years ago
version 2
7809cc5a
4 years ago
version 1
c42cb884
4 years ago
master (base)
and
latest version
latest version
1dcfa251
1 commit,
4 years ago
version 7
e38ab1fd
1 commit,
4 years ago
version 6
d85293c0
1 commit,
4 years ago
version 5
f7e83980
1 commit,
4 years ago
version 4
2f366990
1 commit,
4 years ago
version 3
c6d232e3
1 commit,
4 years ago
version 2
7809cc5a
1 commit,
4 years ago
version 1
c42cb884
1 commit,
4 years ago
4 files
+
55
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
ci/00-install/01_install_dependencies.sh
0 → 100644
+
17
−
0
Options
#!/bin/bash
# We need to install dependencies only for Docker
[[
!
-e
/.dockerenv
]]
&&
exit
0
# Display debug in console
if
[
-n
"
${
DEBUG
}
"
]
;
then
set
-xe
fi
DEBIAN_FRONTEND
=
noninteractive
TZ
=
Europe/Paris
ln
-snf
/usr/share/zoneinfo/
$TZ
/etc/localtime
&&
echo
$TZ
>
/etc/timezone
# Install missing dependencies
apt-get update
-yqq
apt-get
install
-yqq
pandoc texlive-latex-recommended texlive-latex-extra
Loading