github.com/demonoid81/containerd@v1.3.4/.zuul/playbooks/containerd-build/run.yaml (about)

     1  - hosts: all
     2    become: yes
     3    roles:
     4      - role: config-golang
     5        arch: arm64
     6    tasks:
     7      - name: Build containerd
     8        shell:
     9          cmd: |
    10            set -xe
    11            apt-get update
    12            apt-get install -y btrfs-tools libseccomp-dev git pkg-config
    13  
    14            make | tee $LOGS_PATH/make.txt
    15            make test | tee $LOGS_PATH/make_test.txt
    16  
    17            cp -r ./bin $RESULTS_PATH
    18          chdir: '{{ zuul.project.src_dir }}'
    19          executable: /bin/bash
    20        environment: '{{ global_env }}'