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
ee037cae
a62f8728
verified
This commit was signed with the committer's
known signature
.
oppi.li
SSH Key Fingerprint:
SHA256:yQs05DbrlPDC2pBXLxqOdLYEswq3oEBnHaJiBP7bOlM=
2/2
build.yml
success
1min 12s
fmt.yml
success
15s
+5
-1
2 changed files
expand all
collapse all
unified
split
.tangled
workflows
build.yml
src
main.rs
+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
-1
src/main.rs
···
1
1
-
#![feature(let_chains)]
2
1
mod client;
3
2
mod error;
4
3
mod fs;