<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/scripts, branch KennethL-patch-1</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Add git pre-push hook</title>
<updated>2017-09-27T14:43:42+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2017-09-27T14:43:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=ce7571e174a426fcb5c36e8d0757ae7ef481634e'/>
<id>ce7571e174a426fcb5c36e8d0757ae7ef481634e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>scripts: dialyze more applications in automation scripts</title>
<updated>2017-09-01T11:31:53+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2017-09-01T08:34:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=80e5c0196b92f370f0d12c3d17158f20e0f23f2e'/>
<id>80e5c0196b92f370f0d12c3d17158f20e0f23f2e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>erts: Deprecate the non-smp emulators</title>
<updated>2017-04-21T12:30:22+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang-solutions.com</email>
</author>
<published>2017-03-21T12:40:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f30d131bd979e29b68fb7d9ff515c61a246201f4'/>
<id>f30d131bd979e29b68fb7d9ff515c61a246201f4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move travis dialyzer logic to script file</title>
<updated>2017-04-20T07:42:22+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2017-04-18T13:42:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f8004991cc08b4f1c695665e20042179a4f66ac1'/>
<id>f8004991cc08b4f1c695665e20042179a4f66ac1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Run the smoke test for both SMP and non-SMP emulator</title>
<updated>2017-03-08T13:30:01+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-03-08T12:47:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=ec8dc46e4ced05bca7ad51481c0795a0c4742a13'/>
<id>ec8dc46e4ced05bca7ad51481c0795a0c4742a13</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>run-smoke-test: Let ERL_TOP default to current working directory</title>
<updated>2017-03-08T13:30:00+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-03-07T13:35:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5f9d4d60a92d74221c751f74fa5ae9422ccc803d'/>
<id>5f9d4d60a92d74221c751f74fa5ae9422ccc803d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build-docker-otp: Avoid copying the git repository to docker daemon</title>
<updated>2017-03-08T13:29:51+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-03-08T09:44:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=247412294cbd04ecbd9680646b16d08f53255caa'/>
<id>247412294cbd04ecbd9680646b16d08f53255caa</id>
<content type='text'>
Since docker is run from the top-level of the otp repository, the
entire repository will be the context for the docker daemon. In my
private repository, more than 800Mb had to be copied before the
build could be started.

Let the ./scripts directory be the context for docker instead.
That way, only the otp.tar.gz file needs to be copied.

While we are it, also use the ADD command in the Dockerfiles to
pack up the tar file and avoid copying the tar file itself to
the Docker image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since docker is run from the top-level of the otp repository, the
entire repository will be the context for the docker daemon. In my
private repository, more than 800Mb had to be copied before the
build could be started.

Let the ./scripts directory be the context for docker instead.
That way, only the otp.tar.gz file needs to be copied.

While we are it, also use the ADD command in the Dockerfiles to
pack up the tar file and avoid copying the tar file itself to
the Docker image.
</pre>
</div>
</content>
</entry>
<entry>
<title>builder-docker-otp: Fix passing of command</title>
<updated>2017-03-08T09:53:43+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-03-07T14:00:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c1dab09a681edac9684afea4b6e2522475cea2f0'/>
<id>c1dab09a681edac9684afea4b6e2522475cea2f0</id>
<content type='text'>
Pass all argument except the first as the command for "docker run".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pass all argument except the first as the command for "docker run".
</pre>
</div>
</content>
</entry>
<entry>
<title>Reduce number of jobs for make</title>
<updated>2017-03-08T06:33:20+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-03-07T10:54:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=cc96d254379776c83aa85bad397a24fc4365c5c6'/>
<id>cc96d254379776c83aa85bad397a24fc4365c5c6</id>
<content type='text'>
Running fewer jobs in parallel reduces the risk of running out
of memory.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Running fewer jobs in parallel reduces the risk of running out
of memory.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add docker images for building 32/64 bit erlang</title>
<updated>2017-03-08T06:33:20+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2017-03-06T15:00:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=a434fa4622023560e2877a1de698fd4fd15e6b31'/>
<id>a434fa4622023560e2877a1de698fd4fd15e6b31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
