fix: handle case of missing .cmj
when trying to inline external field
#3090
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: Nix Pipeline | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ubuntu-tests: | |
name: Build and test (Ubuntu) | |
strategy: | |
matrix: | |
ocaml-version: | |
- 5_1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: cachix/install-nix-action@v25 | |
with: | |
extra_nix_config: | | |
extra-substituters = https://anmonteiro.nix-cache.workers.dev | |
extra-trusted-public-keys = ocaml.nix-cache.com-1:/xI2h2+56rwFfKyyFVbkJSeGqSIYMC/Je+7XXqGKDIY= | |
- name: "Run nix-build" | |
run: nix-build ./nix/ci/test.nix --argstr ocamlVersion ${{ matrix.ocaml-version }} | |
macos-tests: | |
name: Build and test (macOS) | |
strategy: | |
matrix: | |
ocaml-version: | |
- 5_1 | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: cachix/install-nix-action@v25 | |
with: | |
extra_nix_config: | | |
extra-substituters = https://anmonteiro.nix-cache.workers.dev | |
extra-trusted-public-keys = ocaml.nix-cache.com-1:/xI2h2+56rwFfKyyFVbkJSeGqSIYMC/Je+7XXqGKDIY= | |
- name: "Run nix-build" | |
run: nix-build ./nix/ci/test.nix --argstr ocamlVersion ${{ matrix.ocaml-version }} |