We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78809e0 commit 80c2036Copy full SHA for 80c2036
tools/travis-before-install.sh
@@ -0,0 +1,34 @@
1
+#!/bin/bash
2
+
3
+# Exit the script immediately if a command exits with a non-zero status,
4
+# and print commands and their arguments as they are executed.
5
+set -ex
6
7
+# Print resource information
8
+uname -a
9
+free -m
10
+df -h
11
+ulimit -a
12
13
+mkdir builds
14
+pushd builds
15
16
+# Build into own virtualenv
17
+pip install -U virtualenv
18
19
+virtualenv --python=python venv
20
21
+source venv/bin/activate
22
+python -V
23
+gcc --version
24
25
+popd
26
27
+pip install --upgrade pip
28
29
+pip install setuptools wheel
30
31
32
33
34
0 commit comments