-
Notifications
You must be signed in to change notification settings - Fork 1
170 lines (151 loc) · 5.87 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches:
- main
- impl
paths-ignore:
- 'paper/*'
- 'notes/*'
pull_request:
branches:
- main
paths-ignore:
- 'paper/*'
- 'notes/*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
########################################################################
## CONFIGURATION
##
## See SETTINGS for the most important configuration variable: AGDA_BRANCH.
## It has to be defined as a build step because it is potentially branch
## dependent.
##
## As for the rest:
##
## Basically do not touch GHC_VERSION and CABAL_VERSION as long as
## they aren't a problem in the build. If you have time to waste, it
## could be worth investigating whether newer versions of ghc produce
## more efficient Agda executable and could cut down the build time.
## Just be aware that actions are flaky and small variations are to be
## expected.
##
## The CABAL_INSTALL variable only passes `-O1` optimisations to ghc
## because github actions cannot currently handle a build using `-O2`.
## To be experimented with again in the future to see if things have
## gotten better.
##
########################################################################
########################################################################
## SETTINGS
##
## AGDA_BRANCH picks the branch of Agda to use to build the library.
## It doesn't really track the branch, so you have to drop caches to
## get a new branch version if it changes. This will be fixed in the
## next PR.
########################################################################
env:
AGDA_BRANCH: v2.7.0.1
GHC_VERSION: 9.8.2
CABAL_VERSION: 3.10.2.1
CABAL_INSTALL: cabal install --overwrite-policy=always --ghc-options='-O1 +RTS -M6G -RTS'
CACHE_PATHS: |
~/.cabal/packages
~/.cabal/store
~/.cabal/bin
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
check-whitespace:
runs-on: ubuntu-latest
steps:
- name: Install cabal
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ env.GHC_VERSION }}
cabal-version: ${{ env.CABAL_VERSION }}
cabal-update: true
########################################################################
## INSTALLATION STEPS
########################################################################
- name: Download and install fix-whitespace
run: |
cd ~
git clone https://github.com/agda/fix-whitespace --depth=1
cd fix-whitespace
${{ env.CABAL_INSTALL }} fix-whitespace.cabal
cd ..
########################################################################
## CHECKOUT
########################################################################
# By default github actions do not pull the repo
- name: Checkout grammars-and-semantic-actions
uses: actions/checkout@v3
########################################################################
## TESTING
########################################################################
- name: Test whitespace
run: |
~/.cabal/bin/fix-whitespace --check
compile-agda:
runs-on: ubuntu-latest
steps:
- name: Install cabal
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ env.GHC_VERSION }}
cabal-version: ${{ env.CABAL_VERSION }}
cabal-update: true
########################################################################
## INSTALLATION STEPS
########################################################################
- name: Download and install Agda from github
run: |
git clone https://github.com/agda/agda --branch ${{ env.AGDA_BRANCH }} --depth=1
cd agda
mkdir -p doc
touch doc/user-manual.pdf
${{ env.CABAL_INSTALL }}
cd ..
rm -rf agda
- name: Download Cubical from github
run : |
cd ~
git clone https://github.com/agda/cubical --branch master
cd cubical
git checkout 581748b01bc43a25295993347bdc8c7cb2166090
cd ..
echo "CUBICAL_DIR=$PWD/cubical" >> "$GITHUB_ENV"
- name: Download categorical-logic from github
run : |
cd ~
git clone https://github.com/maxsnew/cubical-categorical-logic --branch main
cd cubical-categorical-logic
git checkout 4e7b1c3a2ba7ed528b3cd9a4c3a5e7be3ff3449d
cd ..
echo "CATLOG_DIR=$PWD/cubical-categorical-logic" >> "$GITHUB_ENV"
- name: Set up Agda dependencies
run : |
mkdir ~/.agda
touch ~/.agda/libraries
echo "$CUBICAL_DIR/cubical.agda-lib" >> ~/.agda/libraries
echo "$CATLOG_DIR/cubical-categorical-logic.agda-lib" >> ~/.agda/libraries
echo "$GITHUB_WORKSPACE/code/cubical/grammar.agda-lib" >> ~/.agda/libraries
########################################################################
## CHECKOUT
########################################################################
# By default github actions do not pull the repo
- name: Checkout grammars-and-semantic-actions
uses: actions/checkout@v3
########################################################################
## TESTING
########################################################################
- name: Put cabal programs in PATH
run: echo "~/.cabal/bin" >> $GITHUB_PATH
- name: Test grammars-and-semantic-actions
run: |
cd code/cubical && make quicktest \
AGDA='~/.cabal/bin/agda +RTS -M6G -RTS -WnoUnsupportedIndexedMatch -W error' \