Skip to content

Commit

Permalink
Attempt to make video capture of build sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
lunkwill42 committed Dec 1, 2023
1 parent a53ad6e commit 2458a3c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,17 @@ jobs:
- name: Build Artifact
run: |
packer build bullseye.json
ls -la
env:
PACKER_LOG: 1

- name: Upload video artifact
uses: actions/upload-artifact@v2
with:
name: video
path: |
**/*.webm
- name: Upload appliance artifact
uses: actions/upload-artifact@v2
with:
Expand Down
4 changes: 3 additions & 1 deletion bullseye.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "2048"],
["modifyvm", "{{.Name}}", "--cpus", "1"],
["modifyvm", "{{.Name}}", "--description", "{{user `description`}}"]
["modifyvm", "{{.Name}}", "--description", "{{user `description`}}"],
["modifyvm", "{{.Name}}", "--videocapfile", "capture.webm"],
["modifyvm", "{{.Name}}", "--videocap", "on"]
]

}
Expand Down

0 comments on commit 2458a3c

Please sign in to comment.