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

removing libgl1-mesa-glx #349

Closed
wants to merge 3 commits into from
Closed
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install system packages
run: |
sudo apt-get update -y
sudo apt-get install -y libgl1-mesa-glx libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev libosmesa6 libosmesa6-dev libgles2-mesa-dev libarchive-dev libpangocairo-1.0-0
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev libosmesa6 libosmesa6-dev libgles2-mesa-dev libarchive-dev libpangocairo-1.0-0

- name: checkout actions
uses: actions/checkout@v4
Expand All @@ -35,7 +35,10 @@ jobs:

- name: install dependencies run tests
shell: bash -el {0}
env:
PATH: "/openmc_venv/bin:$PATH"
run: |
python -m venv openmc_venv
python -m pip install .[tests]

- name: Test with pytest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/documentation_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install system packages
run: |
sudo apt-get update -y
sudo apt-get install -y libgl1-mesa-glx libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev libosmesa6 libosmesa6-dev libgles2-mesa-dev libarchive-dev libpangocairo-1.0-0
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev libosmesa6 libosmesa6-dev libgles2-mesa-dev libarchive-dev libpangocairo-1.0-0


- uses: mamba-org/setup-micromamba@v1
Expand All @@ -37,7 +37,10 @@ jobs:
post-cleanup: 'all'

- name: install package
env:
PATH: "/openmc_venv/bin:$PATH"
run: |
python -m venv openmc_venv
pip install --upgrade pip
pip install .[docs]
- name: Sphinx build tagged version
Expand Down
Loading