Skip to content

Commit b31eb40

Browse files
committed
Pre-release cleanup
Signed-off-by: Lukasz Stafiniak <lukstafi@gmail.com>
1 parent 791f112 commit b31eb40

File tree

2 files changed

+3
-28
lines changed

2 files changed

+3
-28
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -31,36 +31,9 @@ jobs:
3131
ocaml-compiler: ${{ matrix.ocaml-compiler }}
3232
dune-cache: true
3333
allow-prerelease-opam: true
34+
# FIXME: We need to pin printbox-text until > 0.12.0 is released.
3435
- run: opam pin -n printbox-text https://github.com/c-cube/printbox.git
3536
- run: opam pin -n .
3637
- run: opam install . -y --deps-only --with-test --with-doc
3738
- run: opam exec -- dune build
3839
- run: opam exec -- dune runtest
39-
40-
test-metal:
41-
name: Test Metal Backend
42-
runs-on: flyci-macos-large-latest-m1
43-
steps:
44-
- name: Set git to use LF
45-
run: |
46-
git config --global core.autocrlf false
47-
git config --global core.eol lf
48-
git config --global core.ignorecase false
49-
- uses: actions/checkout@v4
50-
- uses: ocaml/setup-ocaml@v3
51-
with:
52-
ocaml-compiler: 5.3.x
53-
dune-cache: true
54-
allow-prerelease-opam: true
55-
- run: opam pin -n printbox-text https://github.com/c-cube/printbox.git
56-
- run: opam pin -n .
57-
- run: opam install . -y --deps-only --with-test
58-
- run: opam exec -- dune build
59-
- run: OCANNL_BACKEND=metal opam exec -- dune exec bin/sanity_check.exe
60-
- run: OCANNL_BACKEND=metal opam exec -- dune exec bin/hello_world.exe
61-
- run: OCANNL_BACKEND=metal opam exec -- dune exec bin/primitive_ops.exe
62-
- run: OCANNL_BACKEND=metal opam exec -- dune exec bin/hello_world_op.exe
63-
- run: OCANNL_BACKEND=metal opam exec -- dune exec bin/micrograd_basic.exe
64-
- run: OCANNL_BACKEND=metal opam exec -- dune exec bin/einsum_trivia.exe
65-
- run: OCANNL_BACKEND=metal opam exec -- dune exec bin/zero2hero_1of7.exe
66-
- run: OCANNL_BACKEND=metal opam exec -- dune exec bin/micrograd_demo.exe

dune-project

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
; :with-dev-setup)
4848
(printbox
4949
(>= 0.12))
50+
; FIXME: Depend on printbox-text > 0.12.0 when it is released.
5051
(printbox-text
5152
(>= 0.12))
5253
pprint
@@ -101,6 +102,7 @@
101102
(>= 0.5.3))
102103
(printbox
103104
(>= 0.12))
105+
; FIXME: Depend on printbox-text > 0.12.0 when it is released.
104106
(printbox-text
105107
(>= 0.12))
106108
(printbox-ext-plot

0 commit comments

Comments
 (0)