-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (37 loc) · 1.35 KB
/
ci.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
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
windows-test:
runs-on: windows-2019
steps:
- run: reg query "HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion"
- run: reg query "HKLM\Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion"
- run: reg query "HKLM\Software\Microsoft\Windows\CurrentVersion"
- run: reg query "HKLM\Software\Microsoft\Windows NT\CurrentVersion"
test:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-24.04", "ubuntu-22.04"]
version: ["6", "7", "8", "wip"]
name: "Test Rhino ${{ matrix.version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- run: ./ci/install-wine
- run: xvfb-run --auto-servernum bash -x ./install-rhino --version ${{ matrix.version }} --renderer no3d
- run: xvfb-run --auto-servernum bash -x ./ci/test-rhino --version ${{ matrix.version }}
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
if: ${{ ! cancelled() }}
with:
name: rhino-${{ matrix.version }}-${{ matrix.os }}-logs
path: build/logs/
if-no-files-found: warn
compression-level: 9
overwrite: false
include-hidden-files: false