X Tutup
The Wayback Machine - https://web.archive.org/web/20220914193922/https://github.com/codeclimate/codeclimate/issues/1008
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to install cppcheck engine #1008

Open
MrMelon1232 opened this issue Feb 18, 2021 · 0 comments
Open

Unable to install cppcheck engine #1008

MrMelon1232 opened this issue Feb 18, 2021 · 0 comments
Assignees

Comments

@MrMelon1232
Copy link

MrMelon1232 commented Feb 18, 2021

Using the command

 - docker run 
      --env CODECLIMATE_DEBUG=1 
      --env CODECLIMATE_CODE="$PWD" 
      --volume "$PWD":/code 
      --volume /var/run/docker.sock:/var/run/docker.sock 
      --volume /tmp/cc:/tmp/cc 
      codeclimate/codeclimate engines:list

in CI job yml file displays the cppcheck engine but when I use this command afterwards:

    - docker run 
      --env CODECLIMATE_DEBUG=1 
      --env CODECLIMATE_CODE="$PWD" 
      --volume "$PWD":/code 
      --volume /var/run/docker.sock:/var/run/docker.sock 
      --volume /tmp/cc:/tmp/cc 
      codeclimate/codeclimate engines:install cppcheck

It installs other engines and not cppcheck

This is the output:

 Pulling docker images.
Using default tag: latest
latest: Pulling from codeclimate/codeclimate-structure
Digest: sha256:bc756917f4c77560d8992d9ab56bb6018f0e7e6b524bc87a124a3c36d4e7695a
Status: Image is up to date for codeclimate/codeclimate-structure:latest
Using default tag: latest
latest: Pulling from codeclimate/codeclimate-duplication
Digest: sha256:e9499f11566ea96d5a5178f5ca5fad7b365dfb4ce1aa71fa24cb4073f3704ea5
Status: Image is up to date for codeclimate/codeclimate-duplication:latest
Using default tag: latest
latest: Pulling from codeclimate/codeclimate-csslint
Digest: sha256:20ce00b71ed8952203f7bb71051aec98bc5e156bcaf474bac3a23c54e8567bed
Status: Image is up to date for codeclimate/codeclimate-csslint:latest
Using default tag: latest
latest: Pulling from codeclimate/codeclimate-coffeelint
Digest: sha256:883cb9f842856187e2170dbfa21a86112a6cbba0de4a5ffa35213ba0c0ce4f48
Status: Image is up to date for codeclimate/codeclimate-coffeelint:latest
Using default tag: latest
latest: Pulling from codeclimate/codeclimate-eslint
Digest: sha256:6d862112509ca750b9ca5236f5db79e36f18c04e1f24d5a8f70fd452c0ae4cf5
Status: Image is up to date for codeclimate/codeclimate-eslint:latest
Using default tag: latest
latest: Pulling from codeclimate/codeclimate-fixme
Digest: sha256:a1d81814b1bcb2a08a5537aa956a566723daef4b1b02dd2bc6addf4d836a4a2d
Status: Image is up to date for codeclimate/codeclimate-fixme:latest
Using default tag: latest
latest: Pulling from codeclimate/codeclimate-rubocop
Digest: sha256:56fb4398a0594476a11e4cfc3d4a1e975b53b1da8bb66ef05cbb9da4f7d82518
Status: Image is up to date for codeclimate/codeclimate-rubocop:latest

and this is my .codeclimate.yml file

version: "2" 
plugins:
  cppcheck:
    enabled: true
    config:
      check: all
      language: c++
      stds:
        - c++11     
      platform: unix64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
X Tutup