tangled
alpha
login
or
join now
melse.tngl.sh
/
lens
1
fork
atom
a code review tool
1
fork
atom
overview
issues
pulls
pipelines
add tangled workflow
melse.tngl.sh
1 month ago
cda0d3ba
0b686e7d
0/1
build.yml
failed
33s
+50
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build.yml
+50
.tangled/workflows/build.yml
···
1
1
+
when:
2
2
+
- event: ["push"]
3
3
+
branch: ["main"]
4
4
+
5
5
+
engine: "nixery"
6
6
+
7
7
+
dependencies:
8
8
+
nixpkgs:
9
9
+
- opam
10
10
+
- gcc
11
11
+
- gnumake
12
12
+
- pkg-config
13
13
+
- rsync
14
14
+
- git
15
15
+
- curl
16
16
+
- patch
17
17
+
- unzip
18
18
+
- m4
19
19
+
- lld
20
20
+
- gmp
21
21
+
- libev
22
22
+
- autoconf
23
23
+
- zlib
24
24
+
- openssl
25
25
+
- gnutar
26
26
+
- bzip2
27
27
+
- xz
28
28
+
- gzip
29
29
+
- which
30
30
+
- cacert
31
31
+
32
32
+
steps:
33
33
+
- name: "Initialize opam and create OxCaml switch"
34
34
+
command: |
35
35
+
set -e
36
36
+
opam init --bare --disable-sandboxing -y
37
37
+
opam update --all
38
38
+
opam switch create 5.2.0+ox --repos ox=git+https://github.com/oxcaml/opam-repository.git,default
39
39
+
40
40
+
- name: "Install dependencies"
41
41
+
command: |
42
42
+
set -e
43
43
+
eval $(opam env --switch 5.2.0+ox)
44
44
+
opam install --deps-only -y .
45
45
+
46
46
+
- name: "Build and test"
47
47
+
command: |
48
48
+
set -e
49
49
+
eval $(opam env --switch 5.2.0+ox)
50
50
+
dune build @runtest