Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build-docker-artifacts-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
"default": false,
"description": "Skip building the build"
},
"skip_test_images": {
"type": "boolean",
"default": false,
"description": "Skip the test_images hook"
},
"components": {
"type": "array",
"items": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
const hooksDirectory = path.join('./deploy/build', flavor.directory, 'hooks');
const testImagesHookScript = path.join(hooksDirectory, 'test-images.sh');
const testImagesHookReport = path.join(hooksDirectory, 'test-images-report');
const testImageEnabled = fs.existsSync(testImagesHookScript);
const testImageEnabled = !flavor.skip_test_images && fs.existsSync(testImagesHookScript);

return {
...flavor,
Expand Down