forked from kofal.net/zmk
feat: Add studio core coverage targets.
* Cover stm32, RP2040, and nRF52 builds.
This commit is contained in:
committed by
Pete Johanson
parent
bafe648425
commit
fb67e4603a
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
@@ -79,7 +79,7 @@ jobs:
|
||||
try {
|
||||
console.log(`::group::${{ matrix.board}} ${shieldArgs.shield} Build`)
|
||||
|
||||
const output = execSync(`west build -s app -p -b ${{ matrix.board }} -- ${shieldArgs.shield ? '-DSHIELD="' + shieldArgs.shield + '"' : ''} ${shieldArgs['cmake-args'] || ''}`);
|
||||
const output = execSync(`west build -s app -p -b ${{ matrix.board }} ${shieldArgs.snippet ? '-S ' + shieldArgs.snippet : ''} -- ${shieldArgs.shield ? '-DSHIELD="' + shieldArgs.shield + '"' : ''} ${shieldArgs['cmake-args'] || ''}`);
|
||||
|
||||
console.log(output.toString());
|
||||
} catch (e) {
|
||||
@@ -170,6 +170,7 @@ jobs:
|
||||
perBoard[configuration.board].push({
|
||||
shield: configuration.shield,
|
||||
'cmake-args': configuration['cmake-args'],
|
||||
snippet: configuration.snippet,
|
||||
nickname: configuration.nickname
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user