tangled
alpha
login
or
join now
oppi.li
/
pdsfs
98
fork
atom
mount an atproto PDS repository as a FUSE filesystem
oppi.li/posts/mounting_the_atmosphere/
98
fork
atom
overview
issues
pulls
pipelines
fix ci
oppi.li
7 months ago
0c0d37c4
b127b900
verified
This commit was signed with the committer's
known signature
.
oppi.li
SSH Key Fingerprint:
SHA256:yQs05DbrlPDC2pBXLxqOdLYEswq3oEBnHaJiBP7bOlM=
2/2
build.yml
success
1min 11s
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
- cargo
9
- rustc
10
- rustfmt
0
0
0
11
12
steps:
13
- name: build
14
command: |
0
0
15
cargo build --all --verbose
16
17
···
8
- cargo
9
- rustc
10
- rustfmt
11
+
- pkg-config
12
+
- fuse3
13
+
- openssl
14
15
steps:
16
- name: build
17
command: |
18
+
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+$PKG_CONFIG_PATH:}$(nix build nixpkgs#openssl.dev --no-link --print-out-paths)/lib/pkgconfig"
19
+
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:$(nix build nixpkgs#fuse3.dev --no-link --print-out-paths)/lib/pkgconfig"
20
cargo build --all --verbose
21
22
-1
src/main.rs
···
1
-
#![feature(let_chains)]
2
mod client;
3
mod error;
4
mod fs;
···
0
1
mod client;
2
mod error;
3
mod fs;