Commit ac5a30f9 authored by canterburym's avatar canterburym Committed by Carmine Rizzo
Browse files

Updating testing

parent 81a75f82
Loading
Loading
Loading
Loading

.editorconfig

0 → 100644
+7 −0
Original line number Diff line number Diff line
[**]
insert_final_newline = true

[**.{asn1,asn,xsd,xml}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
 No newline at end of file
+3 −0
Original line number Diff line number Diff line
# Dockerfiles
dockerfile_*

# Editors
.vscode/
.idea/
+11 −31
Original line number Diff line number Diff line
image: "mcanterb/forge-cicd:latest"

before_script:
  - python3 --version

stages:
  - Syntax
  - CompileAndLint
  - Merge
  - check

checkXSD:
  stage: Syntax
process_asn:
  image: "mcanterb/asn1test:latest"
  stage: check
  interruptible: true
  script:
  - python3 testing/check_xsd.py
    - python3 testing/asn_process.py

parseASN1:
  stage: Syntax
process_xsd:
  image: "mcanterb/xsdtest:latest"
  stage: check
  interruptible: true
  script:
  - python3 testing/parse_asn1.py

compileASN1:
  stage: CompileAndLint
  script:
  - python3 testing/compile_asn1.py

lintASN1:
  stage: CompileAndLint
  script:
  - python3 testing/lint_asn1.py
  allow_failure: true

MergeTest:
  stage: Merge
  script:
  - python3 testing/merge_test.py

    - python3 testing/xsd_process.py
+7 −0
Original line number Diff line number Diff line
[
    ["./33128/r15/TS33128Payloads.asn"],
    ["./33128/r16/TS33128Payloads.asn"],
    ["./33128/r16/TS33128IdentityAssociation.asn"],
    ["./33128/r17/TS33128Payloads.asn"],
    ["./33128/r17/TS33128IdentityAssociation.asn"]
]
 No newline at end of file

testing/asn_ignore.txt

0 → 100644
+1 −0
Original line number Diff line number Diff line
33108
 No newline at end of file
Loading