forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1 KB
/
non-experimental.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
38
39
name: linux
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Non-experimental
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install dependencies
run: ./scripts/github-ci-linux-get-dependencies.sh kinetic
- name: Dependency fixup
run: sudo apt-get install gettext gcovr
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build and test
run: ./scripts/github-ci.sh enable_python build test coverage
- name: Upload Test Result Report
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Test Result Report (non-experimental)
path: |
b/Testing/Temporary/*_report.html
b/Testing/Temporary/LastTest.log
- name: Upload Code Coverage Report
uses: actions/upload-artifact@v4
with:
name: Code Coverage Report (non-experimental)
path: c/coverage*.html