Skip to content
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

[CI] job testing coq-native #1504

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 53 additions & 8 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ opam-lint:4.07.1:
variables:
COMPILER: "4.07.1"

opam-lint:4.09.0:
opam-lint:4.09.1:
extends: .opam-lint
variables:
COMPILER: "4.09.0"
COMPILER: "4.09.1"


opam-build:4.05.0:
Expand All @@ -65,24 +65,69 @@ opam-build:4.05.0:
except:
- web

opam-build:4.05.0:coq-native:
extends: .opam-build
variables:
COMPILER: "4.05.0"
EXTRA_OPAM_OPTION: "coq-native"
except:
- web
allow_failure: true

opam-build:4.07.1:
extends: .opam-build
variables:
COMPILER: "4.07.1"
except:
- web

opam-build:4.09.0:
opam-build:4.07.1:coq-native:
extends: .opam-build
variables:
COMPILER: "4.07.1"
EXTRA_OPAM_OPTION: "coq-native"
except:
- web
allow_failure: true

opam-build:4.07.1+flambda:coq-native:
extends: .opam-build
variables:
COMPILER: "4.07.1+flambda"
EXTRA_OPAM_OPTION: "coq-native"
except:
- web
allow_failure: true

opam-build:4.09.1:
extends: .opam-build
variables:
COMPILER: "4.09.1"
except:
- web

opam-build:4.09.1:coq-native:
extends: .opam-build
variables:
COMPILER: "4.09.1"
EXTRA_OPAM_OPTION: "coq-native"
except:
- web
allow_failure: true

opam-build:4.09.1+flambda:coq-native:
extends: .opam-build
variables:
COMPILER: "4.09.0"
COMPILER: "4.09.1+flambda"
EXTRA_OPAM_OPTION: "coq-native"
except:
- web
allow_failure: true

opam-build:any:
extends: .opam-build
variables:
COMPILER: "4.09.0"
COMPILER: "4.09.1"
EXTRA_OPAM_OPTION: "--unlock-base"
except:
- web
Expand All @@ -106,10 +151,10 @@ opam-build-no-timeout:4.07.1:
tags:
- no-timeout

opam-build-no-timeout:4.09.0:
opam-build-no-timeout:4.09.1:
extends: .opam-build
variables:
COMPILER: "4.09.0"
COMPILER: "4.09.1"
only:
- web
tags:
Expand All @@ -118,7 +163,7 @@ opam-build-no-timeout:4.09.0:
opam-build:any:
extends: .opam-build
variables:
COMPILER: "4.09.0"
COMPILER: "4.09.1"
EXTRA_OPAM_OPTION: "--unlock-base"
except:
- web
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ depends: [
"ocaml"
"coq" {= "dev"}
]

dev-repo: "git+https://github.com/mit-plv/fiat.git"
synopsis: "Mostly automated synthesis of correct-by-construction programs."
tags: ["logpath:Fiat"]
Expand Down
1 change: 1 addition & 0 deletions extra-dev/packages/coq-unimath/coq-unimath.dev/opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ depends: [
]
synopsis: "UniMath"
flags: light-uninstall

url {
src: "git+https://github.com/UniMath/UniMath.git#master"
}
2 changes: 2 additions & 0 deletions scripts/opam-coq-install-remove
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ while [ ! -z "$1" ]; do
RC=1;
FAILURES="$FAILURES $PKG_NAME_VERSION";
else
echo Installed files:
opam show "$PKG_NAME_VERSION" --list-files
SUCCESSES="$SUCCESSES $PKG_NAME_VERSION";
fi
echo Removing $PKG_NAME
Expand Down