We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75431c3 commit 60dd939Copy full SHA for 60dd939
1 file changed
.circleci/config.yml
@@ -23,12 +23,17 @@ executors:
23
docker:
24
- image: circleci/python:3.6
25
26
+commands:
27
+ install_libvirt_dev:
28
+ steps:
29
+ - run: sudo apt-get update
30
+ - run: sudo apt-get install libvirt-dev
31
+
32
jobs:
33
custom_unittest:
34
executor: py36
35
steps:
- - run: sudo apt-get update
- - run: sudo apt-get install libvirt-dev
36
+ - install_libvirt_dev
37
- node/unittests_job # Utilize commands in steps
38
39
workflows:
0 commit comments