Skip to content

Wasm support

Wasm support #432

Workflow file for this run

name: Build
on:
pull_request:
push:
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
ocaml-compiler:
- "4.14"
- "5.2"
include:
- os: ubuntu-latest
ocaml-compiler: "4.12"
runs-on: ${{ matrix.os }}
steps:
- run: ls "C:\Program Files\OpenSSL"
- run: ls "C:\Program Files\OpenSSL\lib"
- run: ls "C:\Program Files\OpenSSL\include\openssl"
- run: Get-ToolsetContent
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
opam-pin: false
- run: C:\hostedtoolcache\windows\cygwin\3.5.4\x86_64\setup-x86_64.exe --packages=libssl-devel --root=D:\cygwin --site=https://cygwin.mirror.constant.com/ --symlink-type=sys
- run: opam pin add ocsigen-start.7.0.0 . --no-action
- run: opam install .
- run: mkdir -p template
- run: opam exec -- eliom-distillery -name template -template os.pgocaml
- run: opam install -y .
working-directory: template
- run: make USE_SASS=no db-init db-create db-schema
working-directory: template
- run: opam exec -- make USE_SASS=no all
working-directory: template