refactor: remove some copy-paste #1594
Workflow file for this run
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
name: Main workflow | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
schedule: | |
# Prime the caches every Monday | |
- cron: 0 1 * * MON | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name == 'pull_request' || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
build-test-default: | |
if: github.event.pull_request.draft == false | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
ocaml-compiler: | |
- ocaml-variants.4.14.2+options,ocaml-option-afl | |
- ocaml-variants.5.02.0+options,ocaml-option-afl | |
local-packages: | |
- | | |
*.opam | |
!cohttp-eio.opam | |
!cohttp-curl-async.opam | |
!cohttp-async.opam | |
!cohttp-bench.opam | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
dune-cache: ${{ matrix.os == 'ubuntu-latest' }} | |
opam-depext: true | |
opam-depext-flags: --with-test | |
opam-local-packages: ${{ matrix.local-packages }} | |
- run: | | |
sudo apt-get update && sudo apt-get upgrade | |
opam depext conf-libcurl | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- run: echo "PKG_CONFIG_PATH=$(brew --prefix openssl)/lib/pkgconfig" >>"$GITHUB_ENV" | |
if: ${{ matrix.os == 'macos-latest' }} | |
- run: opam install --with-test --deps-only http cohttp cohttp-lwt cohttp-lwt-unix cohttp-server-lwt-unix cohttp-mirage cohttp-curl-lwt cohttp-curl cohttp-top | |
- run: opam exec -- dune build http cohttp cohttp-lwt cohttp-lwt-unix cohttp-server-lwt-unix cohttp-mirage cohttp-curl-lwt cohttp-curl cohttp-top | |
- run: opam exec -- dune runtest http cohttp cohttp-lwt cohttp-lwt-unix cohttp-server-lwt-unix cohttp-mirage cohttp-curl-lwt cohttp-curl cohttp-top | |
build-test-cohttp-async: | |
if: github.event.pull_request.draft == false | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
ocaml-compiler: | |
- ocaml-variants.4.14.2+options,ocaml-option-afl | |
- ocaml-variants.5.02.0+options,ocaml-option-afl | |
local-packages: | |
- | | |
*.opam | |
!cohttp-mirage.opam | |
!cohttp-curl-lwt.opam | |
!cohttp-lwt-jsoo.opam | |
!cohttp-lwt-unix.opam | |
!cohttp-lwt.opam | |
!cohttp-server-lwt-unix.opam | |
!cohttp-eio.opam | |
!cohttp-bench.opam | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
dune-cache: ${{ matrix.os == 'ubuntu-latest' }} | |
opam-depext: true | |
opam-depext-flags: --with-test | |
opam-local-packages: ${{ matrix.local-packages }} | |
- run: | | |
sudo apt-get update && sudo apt-get upgrade | |
opam depext conf-libcurl | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- run: echo "PKG_CONFIG_PATH=$(brew --prefix openssl)/lib/pkgconfig" >>"$GITHUB_ENV" | |
if: ${{ matrix.os == 'macos-latest' }} | |
- run: opam install --with-test --deps-only http cohttp cohttp-async cohttp-curl-async cohttp-curl cohttp-top | |
- run: opam exec -- dune build http cohttp cohttp-async cohttp-curl-async cohttp-curl cohttp-top | |
- run: opam exec -- dune runtest http cohttp cohttp-async cohttp-curl-async cohttp-curl cohttp-top | |
build-test-cohttp-eio: | |
if: github.event.pull_request.draft == false | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
ocaml-compiler: | |
- 5.x | |
local-packages: | |
- | | |
http.opam | |
cohttp.opam | |
cohttp-eio.opam | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
dune-cache: ${{ matrix.os == 'ubuntu-latest' }} | |
opam-local-packages: ${{ matrix.local-packages }} | |
opam-repositories: | | |
default: https://github.com/ocaml/opam-repository.git | |
alpha: https://github.com/kit-ty-kate/opam-alpha-repository.git | |
- run: opam install --with-test --deps-only cohttp-eio | |
- run: opam exec -- dune build cohttp-eio | |
- run: opam exec -- dune runtest cohttp-eio | |
build-test-cohttp-bench: | |
if: github.event.pull_request.draft == false | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
ocaml-compiler: | |
- 5.x | |
local-packages: | |
- | | |
*.opam | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
dune-cache: ${{ matrix.os == 'ubuntu-latest' }} | |
opam-local-packages: ${{ matrix.local-packages }} | |
opam-repositories: | | |
default: https://github.com/ocaml/opam-repository.git | |
alpha: https://github.com/kit-ty-kate/opam-alpha-repository.git | |
- run: opam install --with-test --deps-only cohttp-bench | |
- run: opam exec -- dune build cohttp-bench | |
- run: opam exec -- dune runtest cohttp-bench |