GaloisInc / saw-script

The SAW scripting language.
BSD 3-Clause "New" or "Revised" License
442 stars 63 forks source link

Stray ocaml reference in saw-script's CI #2057

Closed sauclovian-g closed 6 days ago

sauclovian-g commented 6 months ago

The file .github/workflows/ci.yml contains this:

OCAML_VERSION: 4.09.x

It also contains this, which is contradictory:

      - uses: ocaml/setup-ocaml@v2
        with:
          ocaml-compiler: 4.14.x

Most likely the 4.09.x declaration is not being used and should be removed. If that doesn't work it should be also changed to 4.14.x as 4.09 is extremely old these days.

(It appears ocaml is in here to allow doing opam install coq)