Skip to content

Commit

Permalink
fixup! test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Jan 8, 2024
1 parent ebb13d3 commit 6ba5d99
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -408,16 +408,13 @@ jobs:
with:
persist-credentials: false

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3

# - name: Test
# uses: ./
# with:
# operating_system: openbsd
# architecture: x86-64
# version: '7.4'
# hypervisor: qemu
# sync_files: false
# shutdown_vm: false
# run: true
- name: Test
uses: ./
with:
operating_system: openbsd
architecture: x86-64
version: '7.4'
hypervisor: qemu
sync_files: false
shutdown_vm: false
run: true
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/qemu_vm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export abstract class Vm extends vm.Vm {
this.hypervisorPath.toString(),
'-daemonize',
'-machine', `type=${this.configuration.machineType},accel=${accel}`,
'-cpu', this.configuration.cpu,
'-cpu', 'host,-pdpe1gb', //this.configuration.cpu,
'-smp', this.configuration.cpuCount.toString(),
'-m', this.configuration.memory,

Expand Down

0 comments on commit 6ba5d99

Please sign in to comment.