This commit is contained in:
2024-11-08 16:47:27 +02:00
parent ec42eb8bc8
commit cd6a987e9a
2 changed files with 25 additions and 3 deletions

View File

@@ -7,8 +7,8 @@ binary blobs. [Forum post goes with this][1].
Clone zig and prune binary files from history:
```
$ git clone https://github.com/ziglang/zig zig-nobinaries
$ cd zig-nobinaries
$ git clone https://github.com/ziglang/zig zig2
$ cd zig2
$ git filter-repo --prune-empty=never --prune-degenerate never --invert-paths --path-glob 'stage1/zig1.wasm*' --path stage1/zig1.c
```
@@ -19,7 +19,7 @@ $ docker build -t zig-repro .
$ docker run -ti --rm \
-v ~/code:/x \
-v /home/$USER/.cache/zig:/home/$USER/.cache/zig \
-w /x/zig-nobinaries \
-w /x/zig2 \
zig-repro \
sh -c "useradd -s /bin/bash -u $UID $USER && su $USER; bash"
```