Skip to content

DEBUG

DEBUG #468

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:
- name: Checkout tree
uses: actions/checkout@v4
- run: |
ls c:/mingw64/
- run: |
ls c:/mingw64/lib
- run: |
ls c:/mingw64/bin
- run: rm -r $env:ProgramFiles\OpenSSL
- run: |
Install-Binary -Url https://slproweb.com/download/Win64OpenSSL-3_3_2.exe -InstallArgs @('/silent', '/sp-', '/suppressmsgboxes', "/DIR=`"$env:ProgramFiles\OpenSSL`"") -ExpectedSHA512Sum "1a70d647534d29a8cc7e28925ca3dda7207fb9e279040087621ca6b65a1baba8d3a284ad14799bd107e658f70bbfa4ef0c008f51e1db95ba9d6470a1903ef90c"
if: runner.os == 'Windows'
- run: echo $env:ProgramFiles\OpenSSL
- run: ls $env:ProgramFiles\OpenSSL
- 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: 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