diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-30 13:20:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-30 13:20:02 -0300 |
commit | c4608bf954c3e335654bdcf18a4d430645713ee7 (patch) | |
tree | ddb142be2aa316ce5110303afca98ce5e0750a48 | |
parent | a516b3b3de058560a1820f4cbd3d579f87356bd2 (diff) | |
download | renpy-c4608bf954c3e335654bdcf18a4d430645713ee7.tar.gz renpy-c4608bf954c3e335654bdcf18a4d430645713ee7.tar.bz2 renpy-c4608bf954c3e335654bdcf18a4d430645713ee7.tar.xz renpy-c4608bf954c3e335654bdcf18a4d430645713ee7.zip |
Anyway, this was never going to work, it is pointless -.-
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ee5b8fb..ef49cb6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,10 +20,16 @@ include: - template: Security/SAST.gitlab-ci.yml semgrep-sast: - dependencies: - - pyflakes2 + before_script: + - mkdir debug + - cp game/*.rpy debug/ + - cp game/*/*.rpy debug/ + - python rparse.py bandit-sast: - dependencies: - - pyflakes2 + before_script: + - mkdir debug + - cp game/*.rpy debug/ + - cp game/*/*.rpy debug/ + - python rparse.py |