File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ jobs:
16
16
runs-on : ubuntu-latest
17
17
strategy :
18
18
matrix :
19
- image :
20
- - ' coqorg/coq: dev'
19
+ coq_version :
20
+ - ' dev'
21
21
fail-fast : false
22
22
steps :
23
- - uses : actions/checkout@v2
23
+ - uses : actions/checkout@v4
24
24
- uses : coq-community/docker-coq-action@v1
25
25
with :
26
26
opam_file : ' coq-dpdgraph.opam'
27
- custom_image : ${{ matrix.image }}
27
+ coq_version : ${{ matrix.coq_version }}
28
28
export : ' OPAMWITHTEST'
29
29
env :
30
30
OPAMWITHTEST : ' true'
Original file line number Diff line number Diff line change @@ -170,8 +170,8 @@ test-suite:
170
170
if grep DIFFERENCES tmp.log > /dev/null 2>&1 ; then \
171
171
for i in $$ (grep DIFFERENCES tmp.log | grep -o ' diff .*' | sed s' /diff //g' | sed s' / /~/g' ); do \
172
172
i=" $$ (echo " $$ i" | sed s'/~/ /g')" ; \
173
- echo diff $$ i; \
174
- diff $$ i; \
173
+ echo diff -u $$ i; \
174
+ diff -u $$ i; \
175
175
done ; \
176
176
fi
177
177
if grep DIFFERENCES tmp.log > /dev/null 2>&1 ; then false ; else true ; fi
You can’t perform that action at this time.
0 commit comments