-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (35 loc) · 1.18 KB
/
isolated_test.yml
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
32
33
34
35
36
37
name: Isolated Dev Test
on:
workflow_dispatch:
inputs:
debug:
description: "Run in debug mode."
type: boolean
required: false
default: true
env:
DEBUG: ${{ github.event.inputs.debug || false }}
# USE_CACHE: true
# DOCUMENTATION_CNAME: docs.pyvista.org
# PYDEVD_DISABLE_FILE_VALIDATION: 1
# PYVISTA_OFF_SCREEN: True
# ALLOW_PLOTTING: true
# SHELLOPTS: errexit:pipefail
# pythonLocation: /opt/hostedtoolcache/Python/3.12.2/x64
# PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.12.2/x64/lib/pkgconfig
# Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.2/x64
# Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.2/x64
# Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.2/x64
# LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.12.2/x64/lib
# VERSION: 3
jobs:
regression_98_v2:
runs-on: ubuntu-latest
name: "Temporary test for PyVista doc cache failures (regression issue #98)."
steps:
- uses: actions/checkout@v3.1.0
- uses: awalsh128/cache-apt-pkgs-action@dev
with:
packages: python3-tk
version: ${{ github.run_id }}-${{ github.run_attempt }}-regression_98_v2
debug: true