Bump efivarfs_get_variable throughput to 50 variables/second from 33⅓ #215
Workflow file for this run
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" }, | |
], | |
}, | |
}, | |
} |