Skip to content

Commit

Permalink
Install pyvirtualdisplay in testing workflow (#2205)
Browse files Browse the repository at this point in the history
The testing-stable container image no longer includes pyvirtualdisplay
due to a change that made it unnecessary for develop that also affected
the stable image. This installs the package as part of the testing
workflow instead. This is a band-aid to fix the stable CI until all of
the recent changes to the tests are backported from develop to stable.
  • Loading branch information
matrss authored Feb 15, 2024
1 parent 271cef4 commit 9cf2168
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ jobs:
|| (echo Dependencies differ \
&& echo "triggerdockerbuild=yes" >> $GITHUB_ENV )
- name: Install pyvirtualdisplay if on stable
if: ${{ inputs.branch_name == 'stable' }}
run: |
source /opt/conda/etc/profile.d/conda.sh
source /opt/conda/etc/profile.d/mamba.sh
mamba install -n mss-${{ inputs.branch_name }}-env pyvirtualdisplay
- name: Always rebuild dependencies for scheduled builds
if: ${{ success() && inputs.event_name == 'schedule' && inputs.branch_name == 'stable' && env.triggerdockerbuild != 'yes' }}
run: |
Expand Down

0 comments on commit 9cf2168

Please sign in to comment.