Loading .gitlab-ci.yml +3 −10 Original line number Diff line number Diff line Loading @@ -6,37 +6,30 @@ before_script: stages: - Merge - Syntax - Compile - Lint - CompileAndLint MergeTest: stage: Merge needs: [] script: - python3 testing/merge_test.py checkXSD: stage: Syntax needs: [] script: - python3 testing/check_xsd.py parseASN1: stage: Syntax needs: [] script: - python3 testing/parse_asn1.py compileASN1: stage: Compile needs: [ Syntax ] stage: CompileAndLint script: - python3 testing/compile_asn1.py allow_failure: true lintASN1: stage: Lint needs: [ Syntax ] stage: CompileAndLint script: - python3 testing/lint_asn1.py allow_failure: true Loading Loading
.gitlab-ci.yml +3 −10 Original line number Diff line number Diff line Loading @@ -6,37 +6,30 @@ before_script: stages: - Merge - Syntax - Compile - Lint - CompileAndLint MergeTest: stage: Merge needs: [] script: - python3 testing/merge_test.py checkXSD: stage: Syntax needs: [] script: - python3 testing/check_xsd.py parseASN1: stage: Syntax needs: [] script: - python3 testing/parse_asn1.py compileASN1: stage: Compile needs: [ Syntax ] stage: CompileAndLint script: - python3 testing/compile_asn1.py allow_failure: true lintASN1: stage: Lint needs: [ Syntax ] stage: CompileAndLint script: - python3 testing/lint_asn1.py allow_failure: true Loading