Skip to content

Commit fe8ec5c

Browse files
committed
ci: repair nix build
Specifically, add --no-sandbox to the nix build invocation to work around cabal. Without this cabal errors out stating it has no http connection.
1 parent 78144f4 commit fe8ec5c

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v3
1313
- uses: cachix/install-nix-action@v22
14-
- run: nix build -o _build
14+
- run: nix build -o _build --no-sandbox
1515
- name: Deploy 🚀
1616
uses: JamesIves/[email protected]
1717
with:

src/Measurement_Observation/Binary_Profiling/linux_perf.rst

-3
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,6 @@ defined in ``QSort`` that I have elided.
290290
Inspecting with Perf
291291
--------------------
292292

293-
Awards
294-
^^^^^^
295-
296293
To investigate we'll compile and run the program in ``perf``. Perf is a
297294
statistical profiler that outputs key CPU counters (these counters are called
298295
`PMC

0 commit comments

Comments
 (0)