-
Notifications
You must be signed in to change notification settings - Fork 7
63 lines (59 loc) · 1.73 KB
/
spontini_server_test.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
on:
workflow_dispatch:
inputs:
windows_os_name:
required: true
type: string
default: windows-latest
linux_os_name:
required: true
type: string
default: ubuntu-latest
macos_os_name:
required: true
type: string
default: macos-latest
python_version:
required: true
type: string
default: 3.11
lily_additional_version:
type: string
default: 2.23.81
jobs:
linux-test:
if: ${{ inputs.linux_os_name != 'NO' }}
runs-on: ${{ inputs.linux_os_name }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python_version }}
- run: >
sudo apt install inkscape;
python3 tests/spontini_server_test.py run_exec ${{ inputs.lily_additional_version }} ;
python3 -V;
windows-test:
if: ${{ inputs.windows_os_name != 'NO' }}
runs-on: ${{ inputs.windows_os_name }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python_version }}
- run: >
choco install inkscape;
python tests/spontini_server_test.py run_exec ${{ inputs.lily_additional_version }} ;
python -V
macos-test:
if: ${{ inputs.macos_os_name != 'NO' }}
runs-on: ${{ inputs.macos_os_name }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python_version }}
- run: >
brew install --cask inkscape;
python3 tests/spontini_server_test.py run_exec ${{ inputs.lily_additional_version }} ;
python3 -V;