Skip to content

Commit

Permalink
adjust metadata and CI for 8.17, disable Docker action CI for now
Browse files Browse the repository at this point in the history
  • Loading branch information
palmskog committed Dec 30, 2022
1 parent 99fb0fd commit c54b6e7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 74 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/docker-action.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/nix-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Nix CI
on:
push:
branches:
- master
- v8.17
pull_request:
paths:
- .github/workflows/**
Expand All @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
overrides:
- 'coq = "master"'
- 'coq = "v8.17"'
fail-fast: false
steps:
- name: Determine which commit to test
Expand All @@ -40,7 +40,7 @@ jobs:
name: coq-community
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
extraPullNames: coq, math-comp
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ env.tested_commit }}
- run: >
Expand Down
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,11 @@ Follow the instructions on https://github.com/coq-community/templates to regener
--->
# Stalmarck

[![Docker CI][docker-action-shield]][docker-action-link]
[![Nix CI][nix-action-shield]][nix-action-link]
[![Contributing][contributing-shield]][contributing-link]
[![Code of Conduct][conduct-shield]][conduct-link]
[![Zulip][zulip-shield]][zulip-link]
[![DOI][doi-shield]][doi-link]

[docker-action-shield]: https://github.com/coq-community/stalmarck/workflows/Docker%20CI/badge.svg?branch=master
[docker-action-link]: https://github.com/coq-community/stalmarck/actions?query=workflow:"Docker%20CI"

[nix-action-shield]: https://github.com/coq-community/stalmarck/workflows/Nix%20CI/badge.svg?branch=master
[nix-action-link]: https://github.com/coq-community/stalmarck/actions?query=workflow:"Nix%20CI"

[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
[contributing-link]: https://github.com/coq-community/manifesto/blob/master/CONTRIBUTING.md
Expand All @@ -41,7 +34,7 @@ algorithm in Coq.
- Coq-community maintainer(s):
- Karl Palmskog ([**@palmskog**](https://github.com/palmskog))
- License: [GNU Lesser General Public License v2.1 or later](LICENSE)
- Compatible Coq versions: Coq master (use the corresponding branch or release for other Coq versions)
- Compatible Coq versions: 8.17 (use the corresponding branch or release for other Coq versions)
- Additional dependencies: none
- Coq namespace: `Stalmarck.Algorithm`
- Related publication(s):
Expand Down
4 changes: 2 additions & 2 deletions coq-stalmarck-tactic.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
maintainer: "[email protected]"
version: "dev"
version: "8.17.dev"

homepage: "https://github.com/coq-community/stalmarck"
dev-repo: "git+https://github.com/coq-community/stalmarck.git"
Expand All @@ -13,7 +13,7 @@ build: ["dune" "build" "-p" name "-j" jobs]
depends: [
"ocaml" {>= "4.05"}
"dune" {>= "2.5"}
"coq" {= "dev"}
"coq" {>= "8.17" & < "8.18"}
"coq-stalmarck" {= version}
]

Expand Down
4 changes: 2 additions & 2 deletions coq-stalmarck.opam
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

opam-version: "2.0"
maintainer: "[email protected]"
version: "dev"
version: "8.17.dev"

homepage: "https://github.com/coq-community/stalmarck"
dev-repo: "git+https://github.com/coq-community/stalmarck.git"
Expand All @@ -18,7 +18,7 @@ algorithm in Coq."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {= "dev"}
"coq" {>= "8.17" & < "8.18"}
]

tags: [
Expand Down
14 changes: 7 additions & 7 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ fullname: Stalmarck
shortname: stalmarck
organization: coq-community
community: true
action: true
action: false
nix: true
doi: 10.1007/3-540-44659-1_24
plugin: true
branch: master
branch: v8.17
dune: false

synopsis: Verified implementation of Stålmarck's algorithm for proving tautologies in Coq
Expand All @@ -33,21 +33,21 @@ maintainers:

opam-file-maintainer: [email protected]

opam-file-version: dev
opam-file-version: 8.17.dev

license:
fullname: GNU Lesser General Public License v2.1 or later
identifier: LGPL-2.1-or-later

supported_coq_versions:
text: Coq master (use the corresponding branch or release for other Coq versions)
opam: '{= "dev"}'
text: 8.17 (use the corresponding branch or release for other Coq versions)
opam: '{>= "8.17" & < "8.18"}'

tested_coq_nix_versions:
- coq_version: 'master'
- coq_version: 'v8.17'

tested_coq_opam_versions:
- version: 'dev'
- version: '8.17'

namespace: Stalmarck.Algorithm

Expand Down

0 comments on commit c54b6e7

Please sign in to comment.