Skip to content

Commit 5b6a0f3

Browse files
committed
Merge branch 'types_structure_over_cwf' of github.com:tvignon/TypeTheory into types_structure_over_cwf
2 parents 26af124 + e8d493f commit 5b6a0f3

File tree

3 files changed

+527
-0
lines changed

3 files changed

+527
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
# Controls when the action will run.
6+
on:
7+
# Triggers the workflow on push or pull request events but only for the master branch
8+
push:
9+
branches: [ master ]
10+
pull_request:
11+
branches: [ master ]
12+
13+
# Allows you to run this workflow manually from the Actions tab
14+
workflow_dispatch:
15+
16+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17+
jobs:
18+
# This workflow contains a single job called "build"
19+
build:
20+
# The type of runner that the job will run on
21+
runs-on: ubuntu-latest
22+
23+
# Steps represent a sequence of tasks that will be executed as part of the job
24+
steps:
25+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26+
- uses: actions/checkout@v2
27+
28+
29+
# Install everything needed for building UniMath (and more)
30+
- name: Install build dependencies
31+
run: sudo apt-get install build-essential git ocaml ocaml-nox ocaml-native-compilers camlp5 libgtk2.0 libgtksourceview2.0 liblablgtk-extras-ocaml-dev ocaml-findlib libnum-ocaml-dev emacs
32+
33+
# Change into UniMath directory and build UniMath
34+
- name: Build UniMath and TypeTheory
35+
run: |
36+
pushd ..
37+
git clone --no-checkout https://github.com/UniMath/UniMath
38+
cd UniMath
39+
pwd
40+
git checkout master
41+
git show
42+
make PACKAGES="Foundations MoreFoundations Combinatorics Algebra NumberSystems CategoryTheory Topology Ktheory PAdics" install
43+
export PATH=$PATH:$PWD/sub/coq/bin/
44+
echo $PATH
45+
popd
46+
cd $GITHUB_WORKSPACE
47+
echo $PATH
48+
time make
49+
50+
51+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
CwF_Structure_Display.v
2+
CwF_SplitTypeCat_TypeEquiv.v

0 commit comments

Comments
 (0)