linux: handle non-ACPI systems in device_get() #224
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "pull-request", | |
"on": { | |
"push": { "branches": "main" }, | |
"pull_request": { "branches": "main" }, | |
}, | |
"jobs": { | |
"linux": { | |
"runs-on": "ubuntu-latest", | |
"strategy": { | |
"fail-fast": false, | |
"matrix": { | |
"container": [ | |
"f33", "f34", "f35", "f36", "centos8", "centos9", | |
], | |
}, | |
}, | |
"container": "vathpela/efi-ci:${{ matrix.container }}-x64", | |
"steps": [ | |
{ "uses": "actions/checkout@v2" }, | |
{ "run": "make all test" }, | |
{ "run": "make abicheck" }, | |
], | |
}, | |
}, | |
} |