tangled
alpha
login
or
join now
melse.tngl.sh
/
lens
1
fork
atom
a code review tool
1
fork
atom
overview
issues
pulls
pipelines
attempt at fixing library paths
melse.tngl.sh
1 month ago
2ccefc39
9adf178f
0/1
build.yml
timeout
19m 18s
+5
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build.yml
+5
.tangled/workflows/build.yml
···
48
48
command: |
49
49
set -e
50
50
eval $(opam env --switch 5.2.0+ox)
51
51
+
# Point C toolchain at nix-provided libraries
52
52
+
NIX_PROFILE="/tangled/home/.nix-profile"
53
53
+
export PKG_CONFIG_PATH="${NIX_PROFILE}/lib/pkgconfig:${PKG_CONFIG_PATH:-}"
54
54
+
export C_INCLUDE_PATH="${NIX_PROFILE}/include:${C_INCLUDE_PATH:-}"
55
55
+
export LIBRARY_PATH="${NIX_PROFILE}/lib:${LIBRARY_PATH:-}"
51
56
opam install --deps-only -y .
52
57
53
58
- name: "Build and test"