summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 06fbb000294bc97e646474f016a370980bdee8a6 (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 1