github.com/MetalBlockchain/metalgo@v1.11.9/.github/actions/install-focal-deps/action.yml (about)

     1  # This action installs dependencies missing from the default
     2  # focal image used by arm64 github workers.
     3  #
     4  # TODO(marun): Find an image with the required dependencies already installed.
     5  
     6  name: 'Install focal arm64 dependencies'
     7  description: 'Installs the dependencies required to build avalanchego on an arm64 github worker running Ubuntu 20.04 (focal)'
     8  
     9  runs:
    10    using: composite
    11    steps:
    12      - name: Install build-essential
    13        run: |
    14          sudo apt update
    15          sudo apt -y install build-essential
    16        shell: bash