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

GitHub action v3 -> v4, Dune language 3.5 -> 3.8, Coq language 0.6 -> 0.8 #244

Merged
merged 2 commits into from
Feb 8, 2024
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/build-typetheory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,29 @@ jobs:
strategy:
fail-fast: false
matrix:
coq-version: [dev, latest, 8.16, 8.15]
coq-version: [dev, latest, 8.16]
ocaml-version: [4.14-flambda]
name: Build with ${{ matrix.coq-version }}
runs-on: ubuntu-22.04

steps:
# Checkout UniMath in the current directory.
- name: Checkout UniMath
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: UniMath/UniMath
path: .
clean: false

# Checkout TypeTheory in TypeTheory/
- name: Checkout TypeTheory
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: TypeTheory

# Grab the cache if available. We tell dune to use $(pwd)/dune-cache/ in
# the custom_script below.
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: dune-cache
key: TypeTheory-coq-${{ matrix.coq-version }}-${{ github.run_id }}-${{ github.run_number }}
Expand Down
4 changes: 2 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(lang dune 3.5)
(using coq 0.6)
(lang dune 3.8)
(using coq 0.8)
(name TypeTheory)