Skip to content

Commit

Permalink
Bootstrap on windows (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
hhugo authored Jun 27, 2024
1 parent 686c523 commit f6fdd7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- run: opam exec -- make test

- run: OCAMLBUILD=$(pwd)/ocamlbuild.native opam exec -- make -C bootstrap
if: runner.os != 'Windows'
shell: bash

- run: opam exec -- make distclean
- run: opam exec -- opam pin add -n ocamlbuild .
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -432,10 +432,10 @@ clean::
rm -f src/*.cm* *.cm* bin/*.cm* plugin-lib/*.cm*
rm -f src/*.o *.o bin/*.o plugin-lib/*.o plugin-lib/*.a
ifdef EXT_OBJ
rm -f src/*$(EXT_OBJ) *$(EXT_OBJ)
rm -f src/*$(EXT_OBJ) bin/*$(EXT_OBJ) plugin-lib/*$(EXT_OBJ) *$(EXT_OBJ)
endif
ifdef EXT_LIB
rm -f src/*$(EXT_LIB) *$(EXT_LIB)
rm -f src/*$(EXT_LIB) bin/*$(EXT_LIB) plugin-lib/*$(EXT_LIB) *$(EXT_LIB)
endif
rm -f test/test2/vivi.ml

Expand Down

0 comments on commit f6fdd7e

Please sign in to comment.