-
-
Notifications
You must be signed in to change notification settings - Fork 3
31 lines (30 loc) · 958 Bytes
/
main.yaml
File metadata and controls
31 lines (30 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Tests
# This workflow is triggered on pushes to the repository.
on: [push]
jobs:
build-unix:
name: Linux Test
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
with:
submodules: recursive
lfs: true
# - uses: actions/setup-dotnet@v1.4.0
# with:
# dotnet-version: "3.1.100" # SDK Version to use.
- name: Build
run: dotnet build
# - name: Update Package respository
# run: .github/workflows/upgrade-debian
- name: Install xvfb
run: .github/workflows/setup-xvfb
- name: Run Render Tests
run: .github/workflows/xvfb-daemon-run dotnet test Tests -v detailed --no-build -- RunConfiguration.TestSessionTimeout=120000
# env:
# LIBGL_ALWAYS_SOFTWARE: true
# - name: Running tests
# run: dotnet test -p Tests
# env:
# LIBGL_ALWAYS_SOFTWARE: true
# GALLIUM_DRIVER: softpipe