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

Fixed CI by restricting icu version #195

Merged
merged 3 commits into from
Apr 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 19 additions & 30 deletions .github/workflows/r-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,43 +33,32 @@ jobs:
- name: Create conda environment
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: recetox-aplcms
activate-environment: recetox-aplcms-dev
auto-update-conda: true
environment-file: conda/environment-dev.yaml
auto-activate-base: false
- run: |
conda init bash
conda env list
- name: Fetch adjusted test data
run: wget -P tests/testdata/adjusted -i tests/remote-files/adjusted.txt
- name: Fetch aligned test data
run: wget -P tests/testdata/aligned -i tests/remote-files/aligned.txt
- name: Fetch extracted test data
run: wget -P tests/testdata/extracted -i tests/remote-files/extracted.txt
- name: Fetch input test data
run: wget -P tests/testdata/input -i tests/remote-files/input.txt
- name: Fetch recovered test data
run: wget -P tests/testdata/recovered -i tests/remote-files/recovered.txt
- name: Fetch recovered-extracted test data
run: wget -P tests/testdata/recovered/recovered-extracted -i tests/remote-files/recovered-extracted.txt
- name: Fetch recovered-corrected test data
run: wget -P tests/testdata/recovered/recovered-corrected -i tests/remote-files/recovered-corrected.txt
- name: Fetch filtered test data
run: wget -P tests/testdata/filtered -i tests/remote-files/filtered.txt
- name: Fetch run_filter test data
run: wget -P tests/testdata/filtered/run_filter -i tests/remote-files/run_filter.txt
- name: Fetch features test data
run: wget -P tests/testdata/features -i tests/remote-files/features.txt
- name: Fetch clusters test data
run: wget -P tests/testdata/clusters -i tests/remote-files/clusters.txt
- name: Fetch features test data
run: wget -P tests/testdata/hybrid -i tests/remote-files/hybrid.txt
- name: Fetch template test data
run: wget -P tests/testdata/template -i tests/remote-files/template.txt
- name: Fetch unsupervised test data
run: wget -P tests/testdata/unsupervised -i tests/remote-files/unsupervised.txt
conda list
- name: Fetch test data
run: |
wget -P tests/testdata/adjusted -i tests/remote-files/adjusted.txt
wget -P tests/testdata/aligned -i tests/remote-files/aligned.txt
wget -P tests/testdata/extracted -i tests/remote-files/extracted.txt
wget -P tests/testdata/input -i tests/remote-files/input.txt
wget -P tests/testdata/recovered -i tests/remote-files/recovered.txt
wget -P tests/testdata/recovered/recovered-extracted -i tests/remote-files/recovered-extracted.txt
wget -P tests/testdata/recovered/recovered-corrected -i tests/remote-files/recovered-corrected.txt
wget -P tests/testdata/filtered -i tests/remote-files/filtered.txt
wget -P tests/testdata/filtered/run_filter -i tests/remote-files/run_filter.txt
wget -P tests/testdata/features -i tests/remote-files/features.txt
wget -P tests/testdata/clusters -i tests/remote-files/clusters.txt
wget -P tests/testdata/hybrid -i tests/remote-files/hybrid.txt
wget -P tests/testdata/template -i tests/remote-files/template.txt
wget -P tests/testdata/unsupervised -i tests/remote-files/unsupervised.txt

- name: Test coverage
run: |
conda activate recetox-aplcms
conda activate recetox-aplcms-dev
Rscript -e "covr::codecov(quiet = FALSE)"
1 change: 1 addition & 0 deletions conda/environment-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ channels:
- defaults
dependencies:
- r-base =4.2
- icu <=70.1
- r-mass
- r-rgl
- bioconductor-mzR
Expand Down