Skip to content
Snippets Groups Projects
.gitlab-ci.yml 369 B
Newer Older
Florian Sesser's avatar
Florian Sesser committed
stages:
  - lint
  - build
  - test
  - deploy


hlint:
  stage: lint
  tags:
    - nix
    - linux
  script:
    - cd obelisk
    - nix-shell -p hlint --run "hlint -j ."


build-android:
  stage: build
  tags:
    - nix
    - linux
  script:
    - cd obelisk
    - nix-build -A android.frontend -o result-android
  artifacts:
    paths:
      - obelisk/result-android