Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,11 @@ jobs:
os:
- ubuntu-latest
ocaml-compiler:
- "4.13"
- "4.14"
- "5.0"
- "5.1"
- "5.2"
- "5.3"
- "5.4"
include:
- os: macos-latest
ocaml-compiler: "4.14"
- os: macos-latest
ocaml-compiler: "5.2"
ocaml-compiler: "5.4"

runs-on: ${{ matrix.os }}

Expand All @@ -44,8 +39,15 @@ jobs:
if: runner.os == 'macOS'
run: brew update && brew reinstall openssl@3

- name: Install external dependencies
# The version of binaryen available in ubuntu is too old and doesn't
# contain wasm-merge needed by wasm_of_ocaml.
if: runner.os == 'Linux'
run: |
curl -sL https://github.com/WebAssembly/binaryen/releases/download/version_129/binaryen-version_129-x86_64-linux.tar.gz | sudo tar xz -C /usr/local --strip-components=1

- run: opam pin add -n eliom https://github.com/ocsigen/eliom.git

- run: opam install . --deps-only

- run: opam exec -- make
- run: opam exec -- dune build @install
9 changes: 1 addition & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
.depend
_client
_deps
_server
lib
_opam
doc/client
doc/server
_build
19 changes: 0 additions & 19 deletions META.in

This file was deleted.

228 changes: 0 additions & 228 deletions Makefile

This file was deleted.

62 changes: 0 additions & 62 deletions Makefile.options

This file was deleted.

7 changes: 7 additions & 0 deletions dune
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(vendored_dirs ocsigen-dune-rules)

; Install the CSS files into share/ocsigen-toolkit/css/
(install
(section share)
(files
(glob_files css/*.css)))
Loading
Loading