Skip to content

Lockfree Skip List #440

Lockfree Skip List

Lockfree Skip List #440

Workflow file for this run

name: main
on:
pull_request:
push:
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
jobs:
windows:
runs-on: windows-latest
env:
QCHECK_MSG_INTERVAL: '60'
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get latest OCaml commit hash
id: multicore_hash
shell: bash
run: |
curl -sH "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/ocaml/ocaml/commits/trunk \
| jq .commit.tree.sha | xargs printf '::set-output name=commit::%s'
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
opam-pin: false
opam-depext: false
ocaml-compiler: ocaml.5.0.0,ocaml-option-mingw
opam-repositories: |
dra27: https://github.com/dra27/opam-repository.git#windows-5.0
default: https://github.com/ocaml-opam/opam-repository-mingw.git#sunset
upstream: https://github.com/ocaml/opam-repository.git
cache-prefix: ${{ steps.multicore_hash.outputs.commit }}
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest