Skip to content
Snippets Groups Projects
.gitlab-ci.yml 750 B
Newer Older
Raymond Toy's avatar
Raymond Toy committed
stages:
  - setup
  - build
  - test

setup:
Raymond Toy's avatar
Raymond Toy committed
  tags: 
   - linux
  script:
    - apt-get update -qq && apt-get install -y wget bzip2 make gcc gcc-multilib time bc git
    - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/10/cmucl-2017-10-x86-linux.tar.bz2
    - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/10/cmucl-2017-10-x86-linux.extra.tar.bz2
    - mkdir snapshot
    - (cd snapshot; tar xjf ../cmucl-2017-10-x86-linux.tar.bz2; tar xjf ../cmucl-2017-10-x86-linux.extra.tar.bz2)
Raymond Toy's avatar
Raymond Toy committed

Raymond Toy's avatar
Raymond Toy committed
build:
Raymond Toy's avatar
Raymond Toy committed
  tags: 
    - linux
Raymond Toy's avatar
Raymond Toy committed
  script:
    - bin/build.sh -B boot-21c -C "" -o ./snapshot/bin/lisp
Raymond Toy's avatar
Raymond Toy committed
    - bin/make-dist.sh -I dist linux-4

test:
  script:
    - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log