Update build.yaml
This commit is contained in:
parent
50f3300607
commit
b8a1db0848
6
.github/workflows/build.yaml
vendored
6
.github/workflows/build.yaml
vendored
@ -9,14 +9,16 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-18.04
|
||||
shell: bash
|
||||
strategy:
|
||||
matrix:
|
||||
arch: [linux/386, linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64, linux/ppc64le]
|
||||
|
||||
steps:
|
||||
- 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
|
||||
with:
|
||||
submodules: "recursive"
|
||||
|
Loading…
Reference in New Issue
Block a user