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 2dd3ac1 commit ca4230fCopy full SHA for ca4230f
.github/workflows/ci.yml
@@ -91,7 +91,8 @@ jobs:
91
github_token: ${{ secrets.GITHUB_TOKEN }}
92
dogfood: ${{ github.event_name == 'workflow_dispatch' && inputs.dogfood || github.event_name != 'workflow_dispatch' }}
93
# The sandbox would otherwise be disabled by default on Darwin
94
- extra_nix_config: "sandbox = true"
+ # Unfortunately due to some packages (dotnet), we must set it to relaxed.
95
+ extra_nix_config: ${{ matrix.os == 'darwin' && 'sandbox = relaxed' || 'sandbox = true' }}
96
# Since ubuntu 22.30, unprivileged usernamespaces are no longer allowed to map to the root user:
97
# https://ubuntu.com/blog/ubuntu-23-10-restricted-unprivileged-user-namespaces
98
- run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
0 commit comments