Skip to content
Closed
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
10 changes: 10 additions & 0 deletions .github/workflows/workstation-polish-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
- 'profiles/linux-dev/workstation-v0/bin/check-workstation-polish.sh'
- 'profiles/linux-dev/workstation-v0/bin/check-mac-polish.sh'
- 'profiles/linux-dev/workstation-v0/bin/check-keyboard-policy.sh'
- 'profiles/linux-dev/workstation-v0/bin/check-shortcut-map-contract.sh'
- 'profiles/linux-dev/workstation-v0/bin/check-gnome-dock-extension.sh'
- '.github/workflows/workstation-polish-validation.yml'
push:
branches:
Expand All @@ -14,6 +16,8 @@ on:
- 'profiles/linux-dev/workstation-v0/bin/check-workstation-polish.sh'
- 'profiles/linux-dev/workstation-v0/bin/check-mac-polish.sh'
- 'profiles/linux-dev/workstation-v0/bin/check-keyboard-policy.sh'
- 'profiles/linux-dev/workstation-v0/bin/check-shortcut-map-contract.sh'
- 'profiles/linux-dev/workstation-v0/bin/check-gnome-dock-extension.sh'
- '.github/workflows/workstation-polish-validation.yml'

jobs:
Expand All @@ -29,6 +33,8 @@ jobs:
bash -n profiles/linux-dev/workstation-v0/bin/check-workstation-polish.sh
bash -n profiles/linux-dev/workstation-v0/bin/check-mac-polish.sh
bash -n profiles/linux-dev/workstation-v0/bin/check-keyboard-policy.sh
bash -n profiles/linux-dev/workstation-v0/bin/check-shortcut-map-contract.sh
bash -n profiles/linux-dev/workstation-v0/bin/check-gnome-dock-extension.sh

- name: Smoke: aggregate helper prefixes Mac and keyboard policy outputs
run: |
Expand Down Expand Up @@ -65,3 +71,7 @@ jobs:
grep -F 'keyboard_policy.primary_backend=input-remapper' <<<"$out" >/dev/null
grep -F 'keyboard_policy.selected_backend_available=present' <<<"$out" >/dev/null
grep -F 'keyboard_policy.policy_ok=yes' <<<"$out" >/dev/null
grep -F 'shortcut_map.helper=present' <<<"$out" >/dev/null
grep -F 'shortcut_map.shortcut_map=' <<<"$out" >/dev/null
grep -F 'gnome_dock.helper=present' <<<"$out" >/dev/null
grep -F 'gnome_dock.gnome_dock_extension_lane_ok=' <<<"$out" >/dev/null
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ main(){
printf 'profile_dir=%s\n' "$pdir"
emit_section mac_polish "$pdir/bin/check-mac-polish.sh"
emit_section keyboard_policy "$pdir/bin/check-keyboard-policy.sh"
emit_section shortcut_map "$pdir/bin/check-shortcut-map-contract.sh"
emit_section gnome_dock "$pdir/bin/check-gnome-dock-extension.sh"
}

main "$@"