mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Adding new step to retest result per each job line. Rework logic to minimize retesting. Creating base for splitting into actions. Adding new TCL command to clear up test folder from skipped
19 lines
497 B
YAML
19 lines
497 B
YAML
name: 'Setup Xvfb and Mesa'
|
|
description: 'Installs and configures Xvfb and Mesa for graphical testing on Linux'
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install Xvfb and Mesa
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y xvfb mesa-utils libgl1-mesa-dri
|
|
shell: bash
|
|
|
|
- name: Start Xvfb
|
|
run: |
|
|
Xvfb :99 -screen 0 1920x1080x24 &
|
|
echo "DISPLAY=:99" >> $GITHUB_ENV
|
|
echo "LIBGL_ALWAYS_SOFTWARE=1" >> $GITHUB_ENV
|
|
shell: bash
|