forked from POV-Ray/povray
-
Notifications
You must be signed in to change notification settings - Fork 0
145 lines (124 loc) · 4.12 KB
/
raytracer_build.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# LPub3D Raytracer-cui build actions
# Trevor SANDY <[email protected]>
# Last Update: September 12, 2024
#
name: 'LPub3D Trace CUI Builds'
on:
workflow_dispatch:
push:
branches:
- lpub3d/raytracer-cui
paths-ignore: [ 'distribution/**', 'doc/**', 'source-doc/**' ]
pull_request:
branches:
- lpub3d/raytracer-cui
paths-ignore: [ 'distribution/**', 'doc/**', 'source-doc/**' ]
jobs:
build_unix:
# if: ${{ false }} # uncomment to disable
name: 'build-${{ matrix.os }} ${{ matrix.c-compiler }}'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-13, macos-14]
c-compiler: [gcc, clang]
exclude:
- os: ubuntu-22.04
c-compiler: clang
- os: macos-13
c-compiler: gcc
- os: macos-14
c-compiler: gcc
include:
# os-specific
- os: ubuntu-22.04
- os: macos-13
- os: macos-14
# compiler-specific
- c-compiler: gcc
cxx-compiler: g++
- c-compiler: clang
cxx-compiler: clang++
steps:
- name: 'Matrix Diagnostics'
shell: bash
run: |
echo '${{ toJSON(matrix) }}'
${{matrix.c-compiler}} --version
- name: 'Check out Repository'
uses: actions/checkout@v4
- name: 'Install Prerequisites'
uses: trevorsandy/povray/.github/actions/unix_getlibs@gh-actions-raytracer-v4
- name: 'Prebuild'
uses: trevorsandy/povray/.github/actions/unix_prebuild@gh-actions-raytracer-v4
- name: 'Configure'
uses: trevorsandy/povray/.github/actions/unix_configure@gh-actions-raytracer-v4
with:
c-compiler: ${{ matrix.c-compiler }}
cxx-compiler: ${{ matrix.cxx-compiler }}
- name: 'Bundle Artifacts for Diagnostics'
if: ${{ always() }}
uses: trevorsandy/povray/.github/actions/git_bundle_ignored@gh-actions-raytracer-v4
with:
name: artifact_diag_unix.tar.gz
- name: 'Build'
uses: trevorsandy/povray/.github/actions/unix_make@gh-actions-raytracer-v4
- name: 'Build Check'
if: ${{ success() }}
uses: trevorsandy/povray/.github/actions/unix_make@gh-actions-raytracer-v4
with:
make-target: check
- name: 'Upload Artifacts for Diagnostics'
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: artifact_diag_${{ matrix.os }}_${{ matrix.c-compiler }}
path: artifact_diag_${{ matrix.os }}_${{ matrix.c-compiler }}.tar.gz
build_windows:
# if: ${{ false }} # uncomment to disable
name: 'build-${{ matrix.runner }} ${{ matrix.platform }}'
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
runner: [windows-2022]
platform: [Win32, x64]
include:
- platform: Win32
toolset: v141
compatibility: ''
msbuild-options: ''
- platform: x64
toolset: v143
compatibility: ''
msbuild-options: ''
steps:
- name: 'Check out Repository'
uses: actions/checkout@v4
- name: 'Add MSBuild to PATH'
uses: microsoft/setup-msbuild@v2
- name: 'Build'
uses: trevorsandy/povray/.github/actions/windows_build@gh-actions-raytracer-v4
with:
pov-ray-build-id: gh+vs2022+${{ matrix.platform }}+${{ github.run_number }}
version-base: 3.8
solution: vs2015
configuration: Release
platform: ${{ matrix.platform }}
toolset: ${{ matrix.toolset }}
compatibility: ${{ matrix.compatibility }}
msbuild-options: ${{ matrix.msbuild-options }}
- name: 'Build Check'
if: ${{ success() }}
uses: trevorsandy/povray/.github/actions/windows_check@gh-actions-raytracer-v4
with:
version-base: 3.8
solution: vs2015
platform: ${{ matrix.platform }}
- name: 'Upload Artifacts for Diagnostics'
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: artifact_diag_${{ matrix.runner }}_${{ matrix.platform }}
path: artifact_diag_${{ matrix.runner }}_${{ matrix.platform }}.zip