summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 744bc61e3f829e26f38d5d472071b1588e047cea (plain) (tree)





















                                             




                            

            




                            

                          
 
stages:
  - test

pyflakes2:
  stage: test
  script:
  - apt-get update
  - apt-get -y -qq install python2.7 pyflakes
  - mkdir debug
  - cp game/*.rpy debug/
  - cp game/*/*.rpy debug/
  - python rparse.py
  - pyflakes debug/
  image: debian:buster
  allow_failure: true

sast:
  stage: test
include:
- template: Security/SAST.gitlab-ci.yml

semgrep-sast:
  before_script:
    - mkdir debug
    - cp game/*.rpy debug/
    - cp game/*/*.rpy debug/
    - python rparse.py

bandit-sast:
  before_script:
    - mkdir debug
    - cp game/*.rpy debug/
    - cp game/*/*.rpy debug/
    - python rparse.py
    - mv debug/*-sast.py .
    - sleep 10