Loading .gitlab-ci.yml +17 −11 Original line number Diff line number Diff line Loading @@ -4,35 +4,41 @@ before_script: - python3 --version stages: - MergeTest - Merge - Syntax - Lint - Compile - Lint MergeTest: stage: 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 checkXSD: stage: Syntax compileASN1: stage: Compile needs: [ Syntax ] script: - python3 testing/check_xsd.py - python3 testing/compile_asn1.py allow_failure: true lintASN1: stage: Lint needs: [ Syntax ] script: - python3 testing/lint_asn1.py allow_failure: true compileASN1: stage: Compile script: - python3 testing/compile_asn1.py allow_failure: true Loading
.gitlab-ci.yml +17 −11 Original line number Diff line number Diff line Loading @@ -4,35 +4,41 @@ before_script: - python3 --version stages: - MergeTest - Merge - Syntax - Lint - Compile - Lint MergeTest: stage: 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 checkXSD: stage: Syntax compileASN1: stage: Compile needs: [ Syntax ] script: - python3 testing/check_xsd.py - python3 testing/compile_asn1.py allow_failure: true lintASN1: stage: Lint needs: [ Syntax ] script: - python3 testing/lint_asn1.py allow_failure: true compileASN1: stage: Compile script: - python3 testing/compile_asn1.py allow_failure: true