Skip to content

Commit

Permalink
put back install gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
trangdata committed Feb 17, 2025
1 parent 13851be commit 265f484
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: |
pip install ".[dev]"
sudo apt-get update
sudo apt-get install libssl-dev libcurl4-openssl-dev libjpeg-dev
sudo apt-get install libssl-dev libcurl4-openssl-dev
- name: Test with nose
run: |
nosetests -s -v
Expand All @@ -64,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

0 comments on commit 265f484

Please sign in to comment.