summaryrefslogtreecommitdiffstats
path: root/tests/roles/cli/tasks/main.yaml
blob: 4586cd7643122311bb6504b64ada0a42e813d5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
- block:
  - name: buildah version
    import_tasks: version.yaml
    tags:
      - version

  - name: buildah from
    import_tasks: from.yaml
    tags:
      - from

  - name: buildah containers
    import_tasks: containers.yaml
    tags:
      - ctr

  - name: buildah mount
    import_tasks: mount.yaml
    tags:
      - mount

  - name: buildah tag
    import_tasks: tag.yaml
    tags:
      - tag

  - name: buildah config 
    import_tasks: config.yaml
    tags:
      - config

  - name: buildah commit
    import_tasks: commit.yaml
    tags:
      - commit

  - name: buildah inspect
    import_tasks: inspect.yaml
    tags:
      - inspect

  - name: buildah push
    import_tasks: push.yaml
    tags:
      - push 

  - name: buildah build-using-dockerfile
    import_tasks: bud.yaml
    tags:
      - bud

  - name: buildah images
    import_tasks: images.yaml
    tags:
      - images

  - name: buildah run
    import_tasks: run.yaml
    tags:
      - run

  always:
  - import_tasks: cleanup.yaml