generated from actions/container-action
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Drop support of
ocaml_version: "minimal"
(#75)
As the docker-coq-action is intended to act as a GHA *facade* (to simplify the CI testing of opam projects using a Docker-Coq image or a custom one), and as the mapping between valid `coq_version` and `ocaml_version` already is the responsibility of the Docker-Coq registry, it appears irrelevant to also maintain one similar mapping in docker-coq-action's `entrypoint.sh`. Still, the value `ocaml_version: "minimal"` can be safely emulated with: ``` - uses: coq-community/docker-coq-action@v1 with: ocaml_version: "4.05" # for 8.10 <= coq_version <= 8.15 # # or: # ocaml_version: "4.09-flambda" # for coq_version >= 8.16 ``` Finally, it can be noted that setting `ocaml_version: "default"` is useful to directly rely on Docker-Coq's default tag, regarding the ocaml version: see https://github.com/coq-community/docker-coq/wiki#ocaml-versions-policy
- Loading branch information
Showing
3 changed files
with
6 additions
and
29 deletions.
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
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