Skip to content

Commit 7aafc74

Browse files
committed
See if I can fix CI
1 parent 910f2b6 commit 7aafc74

3 files changed

Lines changed: 8 additions & 14 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,10 @@ jobs:
3636
- name: Opam dependencies
3737
run: opam install --deps-only -t .
3838

39-
- name: Format
40-
run: opam exec -- dune fmt
41-
4239
- name: Build
4340
run: |
4441
opam exec -- dune subst
45-
opam exec -- dune build -p ocamlformat-lib,ocamlformat
42+
opam exec -- dune build -p ocamlformat-mlx-lib,ocamlformat-mlx
4643
4744
- name: Runtest
4845
run: opam exec -- dune runtest

.github/workflows/build-mingw64.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ jobs:
4343

4444
- name: Install dependencies
4545
run: |
46-
opam pin add -yn ocamlformat-lib.dev .
47-
opam pin add -yn ocamlformat.dev .
48-
opam install -y --deps-only ocamlformat
46+
opam pin add -yn ocamlformat-mlx-lib.dev .
47+
opam pin add -yn ocamlformat-mlx.dev .
48+
opam install -y --deps-only ocamlformat-mlx
4949
5050
- name: Build
5151
run: |
5252
opam exec -- dune subst
53-
opam exec -- dune build -p ocamlformat-lib,ocamlformat @install
54-
opam exec -- dune install --prefix=install ocamlformat
55-
Copy-Item ${{ github.workspace }}\\install\\bin\\ocamlformat.exe -Destination .\${{ env.artifact_name }}
53+
opam exec -- dune build -p ocamlformat-mlx-lib,ocamlformat-mlx @install
54+
opam exec -- dune install --prefix=install ocamlformat-mlx
55+
Copy-Item ${{ github.workspace }}\\install\\bin\\ocamlformat-mlx.exe -Destination .\${{ env.artifact_name }}
5656
5757
- name: Version check
5858
run: |
5959
echo "Version check:"
60-
install/bin/ocamlformat.exe --version
60+
install/bin/ocamlformat-mlx.exe --version
6161
6262
- name: Upload Artifact
6363
uses: actions/upload-artifact@v4

.github/workflows/build-others.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,5 @@ jobs:
3737
- name: Opam dependencies
3838
run: opam install --deps-only -t .
3939

40-
- name: Format
41-
run: opam exec -- dune fmt
42-
4340
- name: Runtest
4441
run: opam exec -- dune runtest

0 commit comments

Comments
 (0)