cicd: fix unmarshal error

This commit is contained in:
light7734 2024-10-14 12:32:48 +03:30
parent 26b6c52658
commit f05515f8fd
Signed by: light7734
GPG Key ID: 37FDF7099B2AB7A7
1 changed files with 8 additions and 8 deletions

View File

@ -10,13 +10,13 @@ workspace:
path: /opt path: /opt
steps: steps:
name: install_dependencies - name: install_dependencies
image: ubuntu:latest image: ubuntu:latest
commands: commands:
- apt update - apt update
- apt-get install -y build-essential cmake clang clang-tidy gcc g++ python3 python3-pip python3.12-venv - apt-get install -y build-essential cmake clang clang-tidy gcc g++ python3 python3-pip python3.12-venv
name: setup_conan - name: setup_conan
image: ubuntu:latest image: ubuntu:latest
environment: environment:
CONAN_REVISIONS_ENABLED: "1" CONAN_REVISIONS_ENABLED: "1"
@ -25,7 +25,7 @@ steps:
- . /opt/venv/bin/activate - . /opt/venv/bin/activate
- pip install conan==2.5.0 - pip install conan==2.5.0
name: echo_info - name: echo_info
image: ubuntu:latest image: ubuntu:latest
commands: commands:
- pip --version - pip --version
@ -38,7 +38,7 @@ steps:
- clang-tidy --version - clang-tidy --version
- clang-format --version - clang-format --version
name: build_gcc - name: build_gcc
image: ubuntu:latest image: ubuntu:latest
commands: commands:
- rm -rv ./build - rm -rv ./build
@ -52,7 +52,7 @@ steps:
- ./build/Release/modules/light/light - ./build/Release/modules/light/light
name: build_clang - name: build_clang
image: ubuntu:latest image: ubuntu:latest
commands: commands:
- rm -rv ./build - rm -rv ./build
@ -66,17 +66,17 @@ steps:
- ./build/Release/modules/light/light - ./build/Release/modules/light/light
name: static_analysis - name: static_analysis
image: ubuntu:latest image: ubuntu:latest
commands: commands:
- echo "[TODO] Implement static analysis" - echo "[TODO] Implement static analysis"
name: run_tests - name: run_tests
image: ubuntu:latest image: ubuntu:latest
commands: commands:
- echp "[TODO] Implement tests" - echp "[TODO] Implement tests"
name: report_coverage - name: report_coverage
image: ubuntu:latest image: ubuntu:latest
commands: commands:
- echp "[TODO] Implement coverage report" - echp "[TODO] Implement coverage report"