tangled
alpha
login
or
join now
oppi.li
/
pdsfs
97
fork
atom
mount an atproto PDS repository as a FUSE filesystem
oppi.li/posts/mounting_the_atmosphere/
97
fork
atom
overview
issues
pulls
pipelines
fix ci
oppi.li
7 months ago
e06a3272
a62f8728
verified
This commit was signed with the committer's
known signature
.
oppi.li
SSH Key Fingerprint:
SHA256:yQs05DbrlPDC2pBXLxqOdLYEswq3oEBnHaJiBP7bOlM=
1/2
build.yml
failed
1m 7s
fmt.yml
success
15s
+5
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build.yml
+5
.tangled/workflows/build.yml
···
8
8
- cargo
9
9
- rustc
10
10
- rustfmt
11
11
+
- pkg-config
12
12
+
- fuse3
13
13
+
- openssl
11
14
12
15
steps:
13
16
- name: build
14
17
command: |
18
18
+
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+$PKG_CONFIG_PATH:}$(nix build nixpkgs#openssl.dev --no-link --print-out-paths)/lib/pkgconfig"
19
19
+
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:$(nix build nixpkgs#fuse3.dev --no-link --print-out-paths)/lib/pkgconfig"
15
20
cargo build --all --verbose
16
21
17
22