Skip to content

Commit

Permalink
Merge pull request #413 from vinferrer/make_fail
Browse files Browse the repository at this point in the history
Fix testing enviroment by using `apt-get install build-essential` rather than `apt-get install make`
  • Loading branch information
Stefano Moia authored Nov 15, 2021
2 parents af56df4 + fcabaf1 commit 7369827
Showing 1 changed file with 9 additions and 4 deletions.
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

0 comments on commit 7369827

Please sign in to comment.