Commit 16a3752f authored by canterburym's avatar canterburym
Browse files

Trying new stage order

parent 68234aea
Loading
Loading
Loading
Loading
Loading
+3 −10
Original line number Diff line number Diff line
@@ -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