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

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