-
Notifications
You must be signed in to change notification settings - Fork 1.2k
[new release] goblint-cil (2.0.8) #28478
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sim642
wants to merge
4
commits into
ocaml:master
Choose a base branch
from
sim642:release-goblint-cil-2.0.8
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
f9f72ca
[new release] goblint-cil (2.0.8)
sim642 27bb43c
goblint-cil.2.0.8: exclude arm64 debian-13 from with-test
sim642 dd31e72
goblint-cil.2.0.8: fix freebsd x-ci-accept-failures
sim642 ceeb915
Update packages/goblint-cil/goblint-cil.2.0.8/opam
mseri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,77 @@ | ||
opam-version: "2.0" | ||
synopsis: | ||
"A front-end for the C programming language that facilitates program analysis and transformation" | ||
description: """ | ||
This is a fork of the 'cil' package used for 'goblint'. Major changes include: | ||
* Support for C99 and C11. | ||
* Compatibility with modern OCaml versions. | ||
* Use Zarith instead of Num and use that for integer constants. | ||
* Improved locations with columns and spans. | ||
* Removal of unmaintained extensions and MSVC support. | ||
* Use dune instead of make and ocamlbuild. | ||
* Many bug fixes.""" | ||
maintainer: [ | ||
"Michael Schwarz <[email protected]>" | ||
"Simmo Saan <[email protected]>" | ||
] | ||
authors: [ | ||
"George Necula" | ||
"Scott McPeak" | ||
"Westley Weimer" | ||
"Gabriel Kerneis" | ||
"Ralf Vogler" | ||
"Michael Schwarz" | ||
"Simmo Saan" | ||
] | ||
license: "BSD-3-Clause" | ||
homepage: "https://github.com/goblint/cil" | ||
bug-reports: "https://github.com/goblint/cil/issues" | ||
depends: [ | ||
"ocaml" {>= "4.12.0"} | ||
"ocamlfind" {with-test} | ||
"zarith" | ||
"hevea" {with-doc} | ||
"dune" {>= "2.7"} | ||
"dune-configurator" | ||
"odoc" {with-doc} | ||
"stdlib-shims" | ||
"ppx_deriving_yojson" {>= "3.2"} | ||
"yojson" | ||
"conf-perl" | ||
"cppo" | ||
"conf-gcc" | ||
] | ||
conflicts: ["cil" "host-system-mingw"] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test & (arch = "x86_64" | os != "linux")} # fails on arm64 debian-13 | ||
sim642 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/goblint/cil.git" | ||
depexts: [ | ||
["perl-ExtUtils-MakeMaker"] {os-distribution = "centos" | os-family = "fedora" | os-distribution = "ol"} | ||
["perl-FindBin"] {os-family = "fedora"} | ||
["build-base"] {os-distribution = "alpine"} | ||
] | ||
available: arch = "x86_64" | arch = "arm64" | ||
x-ci-accept-failures: [ | ||
"freebsd-14.2" # installed cilly binary is not found for some reason (https://github.com/ocaml/opam-repository/pull/24812#issuecomment-1819231335) | ||
] | ||
url { | ||
src: | ||
"https://github.com/goblint/cil/releases/download/2.0.8/goblint-cil-2.0.8.tbz" | ||
checksum: [ | ||
"sha256=b09009442e27c51e61653ca0104069097bfcb7943457478fd5a153cdda9cbc09" | ||
"sha512=0f89d8920a35daa9213d7c407d1e1d89d820df9d6da1878335209e166aad68b2a377134ab08bb74499b40d13a7b758959b225b01e067d6e609da5295913e2af7" | ||
] | ||
} | ||
x-commit-hash: "d1da1ba071b7060b7b9c533853a3c56e82e762ba" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, according to the CI logs
host-system-msvc
is used on the two GHA runners:https://github.com/ocaml/opam-repository/actions/runs/18243132453/job/51947665615?pr=28478
https://github.com/ocaml/opam-repository/actions/runs/18243132453/job/51947665614?pr=28478
We can switch to that or remove the
host-system-mingw
suggestion again.In either case, this is still good to go.