We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec86e43 commit 81712ffCopy full SHA for 81712ff
.github/workflows/ci.yml
@@ -76,6 +76,11 @@ jobs:
76
build:
77
runs-on: ubuntu-latest
78
79
+ env:
80
+ NIX_EXTRA_CONFIG_ACT: |
81
+ sandbox = false
82
+ filter-syscalls = false
83
+
84
strategy:
85
fail-fast: false
86
matrix:
@@ -90,6 +95,10 @@ jobs:
90
95
uses: cachix/install-nix-action@v31 # 2025-05-27, from https://github.com/cachix/install-nix-action/tags
91
96
with:
92
97
nix_path: nixpkgs=channel:nixos-25.05 # latest release
98
+ # Act executes inside an unprivileged container (Docker or Podman),
99
+ # so KVM support isn't available.
100
+ enable_kvm: "${{ github.actor != 'nektos/act' }}"
101
+ extra_nix_config: ${{ github.actor == 'nektos/act' && env.NIX_EXTRA_CONFIG_ACT || '' }}
93
102
94
103
- name: Run CI script
104
env:
0 commit comments