-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'jsoo-tip' into test-merge
- Loading branch information
Showing
5,584 changed files
with
36,324 additions
and
19,119 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# ocamlformat bump | ||
3c98cd3e0c4e1191983b602a8e38a1c92d259891 | ||
3c98cd3e0c4e1191983b602a8e38a1c92d259891 | ||
# Upgrade to OCamlformat 0.26.0 | ||
7de742a776fcdad4b098695617b9e7afab822c82 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
labels: | ||
- dependencies | ||
- no changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
name: build | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
schedule: | ||
# Prime the caches every Monday | ||
- cron: 0 1 * * MON | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
ocaml-compiler: | ||
- "4.08" | ||
- "4.09" | ||
- "4.10" | ||
- "4.11" | ||
- "4.12" | ||
- "4.13" | ||
- "5.0" | ||
- "5.1" | ||
skip-test: | ||
- true | ||
skip-doc: | ||
- true | ||
skip-effects: | ||
- true | ||
include: | ||
- os: ubuntu-latest | ||
ocaml-compiler: "4.14" | ||
skip-effects: true | ||
skip-test: false | ||
skip-doc: true | ||
- os: macos-latest | ||
ocaml-compiler: "4.14" | ||
skip-effects: true | ||
skip-test: false | ||
skip-doc: true | ||
- os: windows-latest | ||
ocaml-compiler: "4.14" | ||
skip-effects: true | ||
skip-test: false | ||
skip-doc: true | ||
- os: ubuntu-latest | ||
ocaml-compiler: "5.2" | ||
skip-effects: false | ||
skip-test: false | ||
skip-doc: false | ||
- os: macos-latest | ||
ocaml-compiler: "5.2" | ||
skip-effects: true | ||
skip-test: false | ||
skip-doc: true | ||
- os: windows-latest | ||
ocaml-compiler: "5.2" | ||
skip-effects: false | ||
skip-test: false | ||
skip-doc: true | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Set git to use LF | ||
if: matrix.ocaml-compiler < 5.2 | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
git config --global core.ignorecase false | ||
- 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 ${{ matrix.ocaml-compiler }} | ||
uses: ocaml/setup-ocaml@v3 | ||
with: | ||
ocaml-compiler: ${{ matrix.ocaml-compiler }} | ||
dune-cache: true | ||
opam-pin: false | ||
|
||
- run: opam install conf-pkg-config | ||
if: runner.os == 'Windows' | ||
|
||
- run: opam install . --best-effort | ||
if: ${{ matrix.skip-test }} | ||
|
||
- run: opam install . --with-test | ||
if: ${{ !matrix.skip-test }} | ||
|
||
- run: opam exec -- make all | ||
if: ${{ !matrix.skip-test }} | ||
|
||
- run: opam exec -- make tests | ||
if: ${{ !matrix.skip-test }} | ||
|
||
- run: opam exec -- dune build @all @runtest --profile using-effects | ||
if: ${{ !matrix.skip-effects }} | ||
|
||
- run: opam exec -- git diff --exit-code | ||
if: ${{ !matrix.skip-test }} | ||
|
||
- name: build doc | ||
if: ${{ !matrix.skip-doc && github.event_name == 'push' && github.ref_name == 'master'}} | ||
run: | | ||
opam install odoc lwt_log cohttp-lwt-unix yojson ocp-indent graphics higlo | ||
opam exec -- make doc | ||
- name: synchronize doc | ||
if: ${{ !matrix.skip-doc && github.event_name == 'push' && github.ref_name == 'master' }} | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
branch: wikidoc | ||
folder: doc-dev | ||
clean: true | ||
target-folder: doc/dev/ | ||
|
||
lint-opam: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout tree | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set-up OCaml | ||
uses: ocaml/setup-ocaml@v3 | ||
with: | ||
ocaml-compiler: "5.2" | ||
dune-cache: true | ||
|
||
- uses: ocaml/setup-ocaml/lint-opam@v3 | ||
|
||
lint-fmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout tree | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set-up OCaml | ||
uses: ocaml/setup-ocaml@v3 | ||
with: | ||
ocaml-compiler: "5.2" | ||
dune-cache: true | ||
|
||
- uses: ocaml/setup-ocaml/lint-fmt@v3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Check changelog | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
types: | ||
- labeled | ||
- opened | ||
- reopened | ||
- synchronize | ||
- unlabeled | ||
|
||
jobs: | ||
check-changelog: | ||
name: Check changelog | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check changelog | ||
uses: tarides/changelog-check-action@v3 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.3.0-wasm | ||
5.8.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.