summaryrefslogtreecommitdiffstats
path: root/tests/roles/cli/tasks/main.yaml
blob: f709887c390fc46709ba9be530ceceb6473d6b38 (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
---
- block:
  - name: prepare containers nginxc
    import_tasks: prepare-containers.yaml
    tags:
      - nginxc

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

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

  - 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 push
    import_tasks: push.yaml
    tags:
      - push 

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

  always:
  - import_tasks: cleanup.yaml