File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,21 @@ jobs:
14
14
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
15
15
steps :
16
16
- checkout
17
- - run : uname -a
18
- - run : python3 --version
19
- # fail if not using Python 3
20
- - run : python3 --version | grep "3\."
21
- - run : sudo apt-get install firefox wrk
22
- - run : pip3 install -r requirements/devel.txt
23
- - run : make test-docker-image
17
+ - run : |
18
+ uname -a
19
+ python3 --version
20
+ # fail if not using Python 3
21
+ python3 --version | grep "3\."
22
+
23
+ sudo apt-get install firefox git make wrk
24
+ # install beakerlib from source it doesn't ship DEB packages
25
+ if [ ! -f "/usr/share/beakerlib/beakerlib.sh" ]; then
26
+ git clone https://github.com/beakerlib/beakerlib.git
27
+ sudo make -C beakerlib/ install
28
+ fi
29
+
30
+ pip3 install -r requirements/devel.txt
31
+ make test-docker-image
24
32
25
33
aarch64-build-and-push-docker-image :
26
34
machine :
You can’t perform that action at this time.
0 commit comments