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

LD_LIBRARY_PATH #164

Merged
merged 20 commits into from
Sep 27, 2022
7 changes: 6 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
pip install ".[dev]"
sudo apt-get update
sudo apt-get install libssl-dev libcurl4-openssl-dev
sudo apt-get install g++-11 -y
- name: Test with nose
run: |
nosetests -s -v
Expand All @@ -65,6 +64,12 @@ jobs:
reticulate::py_discover_config()
shell: Rscript {0}

- name: Install gcc
run: |
conda install -c conda-forge libstdcxx-ng
sudo rm /usr/lib/x86_64-linux-gnu/libstdc++.so.6
sudo ln -s /home/runner/.local/share/r-miniconda/pkgs/libstdcxx-ng-12.1.0-ha89aaad_16/lib/libstdc++.so.6.0.30 /usr/lib/x86_64-linux-gnu/libstdc++.so.6

- name: Build site
run: |
Rscript -e 'print(reticulate::py_discover_config())'
Expand Down