-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 791 Bytes
/
Copy pathci.yml
File metadata and controls
34 lines (29 loc) · 791 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
32
33
34
# SPDX-License-Identifier: MIT
name: CI
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
render:
name: Render proof
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install OpenSCAD
run: |
sudo apt-get update
sudo apt-get install -y openscad
openscad --version
- name: Full render proof (split fast cells + examples + negative asserts + mesh checks)
shell: pwsh
run: |
& ./scripts/render_proof.ps1 -OpenSCAD openscad -OutDir proof/ci
- name: Upload proof artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: render-proof-output
path: proof/ci
if-no-files-found: ignore