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

Fix testing enviroment by using apt-get install build-essential rather than apt-get install make #413

Merged
merged 8 commits into from
Nov 15, 2021
13 changes: 9 additions & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ Unittest_task:
populate_script:
- source activate $PWD/conda-env
Running_unit_tests_script:
- apt-get install -y make curl
- apt-get update
- apt-get install -y build-essential curl
- source activate $PWD/conda-env
- make unittest
- bash <(curl -s https://codecov.io/bash)
Expand All @@ -62,7 +63,8 @@ Integration_task:
populate_script:
- source activate $PWD/conda-env
Running_integration_tests_script:
- apt-get install -y make curl tree tar
- apt-get update
- apt-get install -y build-essential curl tree tar
- source activate $PWD/conda-env
- PATH=/home/test_user/.local/bin:$PATH
- make integration
Expand All @@ -84,7 +86,8 @@ Style_check_task:
populate_script:
- source activate $PWD/conda-env
Lintin_script:
- apt-get install -y make
- apt-get update
- apt-get install -y build-essential
- source activate $PWD/conda-env
- make lint

Expand All @@ -101,7 +104,8 @@ Build_docs_task:
populate_script:
- source activate $PWD/conda-env
Build_documentation_script:
- apt-get install -y make tar
- apt-get update
- apt-get install -y build-essential tar
- source activate $PWD/conda-env
- make -C docs html
docs_artifacts:
Expand All @@ -121,6 +125,7 @@ Bids_validate_task:
populate_script:
- source activate $PWD/conda-env
Generate_enviroment_script:
- apt-get update
- apt-get install -yqq wget curl tree
- curl -sL https://deb.nodesource.com/setup_15.x | bash -
- apt-get install -yqq nodejs
Expand Down