colisper icon indicating copy to clipboard operation
colisper copied to clipboard

Run on CI (Gitlab CI example)

Open vindarel opened this issue 4 years ago • 0 comments

We currently have to use my fork of the script. Awaiting get.comby.dev to be updated (https://github.com/comby-tools/comby/issues/228).

Example .gitlab-ci.yaml:

image: daewok/lisp-devel

stages:
  - test 
  - build

before_script:
  - apt-get update -qy
  - apt-get install -y git-core

qa:
  allow_failure: true
  stage: test
  script:
    # QA tools:
    # install Comby:
    - apt-get install -y sudo
    - adduser lisp sudo
    # - bash <(curl -sL get.comby.dev)
    - bash <(curl -sL https://raw.githubusercontent.com/vindarel/comby/set-release-1.0.0/scripts/install.sh)
    # install Colisper:
    - git clone https://github.com/vindarel/colisper ~/colisper
    - chmod +x ~/colisper/colisper.sh
    # run it on my source files:
    - cd src/ && ~/colisper/colisper.sh

Result:

Selection_146

vindarel avatar Jan 14 '21 15:01 vindarel