Add note to efi_get_variable about ownership of the data pointer #260
This file contains hidden or 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": [ | |
"f38", "f39", "centos8", "centos9", | |
], | |
}, | |
}, | |
"container": "vathpela/efi-ci:${{ matrix.container }}-x64", | |
"steps": [ | |
{ "uses": "actions/checkout@v3" }, | |
{ "run": "make all test" }, | |
{ "run": "make abicheck" }, | |
], | |
}, | |
}, | |
} |