-
Notifications
You must be signed in to change notification settings - Fork 8
37 lines (35 loc) · 886 Bytes
/
blank.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
name: Ubuntu
on:
push:
branches:
- '**'
tags:
- '**'
pull_request:
env:
SCHEME: scheme
IDRIS2_TESTS_CG: chez
jobs:
build:
runs-on: ubuntu-latest
container: mattpolzin2/idris-docker:nightly
steps:
- name: idrall build and test
run: |
apt update && apt install git -y
shell: bash
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: idrall build and test
run: |
make clean && make build && make install && make test INTERACTIVE=''
shell: bash
- name: Step To run on failure
if: ${{ failure() }}
run: |
cat -vet tests/idrall/idrall001/expected
cat -vet tests/idrall/idrall001/output
md5sum tests/idrall/idrall001/expected
md5sum tests/idrall/idrall001/output