aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 286b941e502ca93735c0f0926d55b652876601f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
default:
  image: tojoqk/acl2:8.3

test:
  stage: test
  script:
    - >
      for source in $(find -type f -name '*.lisp'); do
        echo "--- verify $source ---"
        acl2 < $source | tee result
        if [ -n "$(grep -E '^[*]{8} FAILED [*]{8}' result)" ]; then
          exit 1
        fi
      done