Update build.yaml

This commit is contained in:
Andrea Cavalli 2020-11-10 14:27:42 +01:00
parent 50f3300607
commit b8a1db0848

View File

@ -9,14 +9,16 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
shell: bash
strategy: strategy:
matrix: matrix:
arch: [linux/386, linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64, linux/ppc64le] arch: [linux/386, linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64, linux/ppc64le]
steps: steps:
- name: Install sudo package - name: Install sudo package
run: apt-get update && apt-get install -y sudo run: |
(apt-get update || true) 2>/dev/null
(apt-get install -y sudo) 2>/dev/null
sudo apt update
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
submodules: "recursive" submodules: "recursive"