Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
typo3
CI
testing-infrastructure
Commits
4ab235e4
Commit
4ab235e4
authored
Jul 13, 2018
by
Christian Kuhn
Browse files
[BUGFIX] gitignore and path fixes
parent
7477657a
Changes
6
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
4ab235e4
...
...
@@ -9,6 +9,7 @@ build_php56
build_php70
build_php71
build_php72
build_bamboo
build_bamboo-php53
build_bamboo-php54
build_bamboo-php55
...
...
bamboo-remote-agent/utilities.sh
View file @
4ab235e4
#!/bin/bash
set
-e
source
/
b
d_build/buildconfig
source
/
p
d_build/buildconfig
set
-x
# Often used tools.
...
...
baseimage/Dockerfile
View file @
4ab235e4
FROM
ubuntu:18.04
MAINTAINER
TYPO3 GmbH <info@typo3.com>
ADD
. /
b
d_build
ADD
. /
p
d_build
RUN
/
b
d_build/prepare.sh
&&
\
/
b
d_build/utilities.sh
&&
\
/
b
d_build/cleanup.sh
RUN
/
p
d_build/prepare.sh
&&
\
/
p
d_build/utilities.sh
&&
\
/
p
d_build/cleanup.sh
baseimage/cleanup.sh
View file @
4ab235e4
#!/bin/bash
set
-e
source
/
b
d_build/buildconfig
source
/
p
d_build/buildconfig
set
-x
apt-get clean
apt-get
-y
autoremove
rm
-rf
/var/lib/apt/lists/
*
rm
-rf
/
b
d_build
rm
-rf
/
p
d_build
rm
-rf
/tmp/
*
/var/tmp/
*
rm
-f
/etc/dpkg/dpkg.cfg.d/docker-apt-speedup
baseimage/prepare.sh
View file @
4ab235e4
#!/bin/bash
set
-e
source
/
b
d_build/buildconfig
source
/
p
d_build/buildconfig
set
-x
# Temporarily disable dpkg fsync to make building faster.
...
...
baseimage/utilities.sh
View file @
4ab235e4
#!/bin/bash
set
-e
source
/
b
d_build/buildconfig
source
/
p
d_build/buildconfig
set
-x
# Often used tools.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment