Raymond Toy pushed to branch rtoy-rework-ci at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • .gitlab-ci.yml
    1
    -before_script:
    
    2
    -  tags: linux
    
    3
    -  - apt-get update -qq && apt-get install -y wget bzip2 make gcc gcc-multilib time bc git
    
    4
    -  - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/10/cmucl-2017-10-x86-linux.tar.bz2
    
    5
    -  - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/10/cmucl-2017-10-x86-linux.extra.tar.bz2
    
    6
    -  - mkdir snapshot
    
    7
    -  - (cd snapshot; tar xjf ../cmucl-2017-10-x86-linux.tar.bz2; tar xjf ../cmucl-2017-10-x86-linux.extra.tar.bz2)
    
    1
    +linux-setup:
    
    2
    +  tags: 
    
    3
    +   - linux
    
    4
    +  script:
    
    5
    +    - apt-get update -qq && apt-get install -y wget bzip2 make gcc gcc-multilib time bc git
    
    6
    +    - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/10/cmucl-2017-10-x86-linux.tar.bz2
    
    7
    +    - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/10/cmucl-2017-10-x86-linux.extra.tar.bz2
    
    8
    +    - mkdir snapshot
    
    9
    +    - (cd snapshot; tar xjf ../cmucl-2017-10-x86-linux.tar.bz2; tar xjf ../cmucl-2017-10-x86-linux.extra.tar.bz2)
    
    8 10
     
    
    9 11
     test:
    
    10
    -  tags: linux
    
    12
    +  tags: 
    
    13
    +    - linux
    
    11 14
       script:
    
    12 15
         - bin/build.sh -B boot-21c -C "" -o ./snapshot/bin/lisp
    
    13 16
         - bin/make-dist.sh -I dist-linux linux-4
    
    14
    -    - bin/run-tests.sh -l dist-linux/bin/lisp 2>&1 | tee test.log
    17
    +    - bin/run-tests.sh -l dist-linux/bin/lisp 2>&1 | tee test.log
    \ No newline at end of file