There was an error while loading. Please reload this page.
2 parents ed4dc90 + 18a937f commit 1065c3cCopy full SHA for 1065c3c
1 file changed
README.md
@@ -83,6 +83,24 @@ docker pull godebos/debos
83
84
See [docker/README.md](docker/README.md) for usage.
85
86
+## Using debos in GitHub Actions
87
+
88
+debos can be run in GitHub Actions using the official container with KVM support
89
+for isolated and reproducible builds. The `--fakemachine-backend=kvm` option is
90
+specified to ensure KVM is used as expected:
91
92
+```yaml
93
+jobs:
94
+ build:
95
+ runs-on: ubuntu-latest
96
+ container:
97
+ image: ghcr.io/go-debos/debos:main
98
+ options: --device=/dev/kvm
99
+ steps:
100
+ - uses: actions/checkout@v4
101
+ - run: debos --fakemachine-backend=kvm --print-recipe recipe.yaml
102
+```
103
104
## Installation from source (under Debian)
105
106
```bash
0 commit comments