-
Notifications
You must be signed in to change notification settings - Fork 159
195 lines (192 loc) · 5.11 KB
/
ci-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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
name: CI-Build
run-name: CI build
on:
pull_request:
branches: '*'
paths:
- '**'
- '!.github/**'
- '!README.md'
push:
branches:
- master
paths:
- '**'
- '!.github/**'
- '!README.md'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
start-start:
if: github.repository == 'open-watcom/open-watcom-v2'
name: Check if to run
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
bootow19-lnx:
needs: start-start
name: Test OW 1.9 Bootstrap Linux
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Test Bootstrap
uses: "./.github/actions/testboot"
with:
hostos: 'lnx'
owversion: '1.9'
owdebug: ${{ vars.OWDEBUG }}
bootow20-lnx:
needs: start-start
name: Test OW 2.0 Bootstrap Linux
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Test Bootstrap
uses: "./.github/actions/testboot"
with:
hostos: 'lnx'
owversion: '2.0'
owtag: '2023-01-01-Build'
owdebug: ${{ vars.OWDEBUG }}
bootow19-nt:
needs: start-start
name: Test OW 1.9 Bootstrap Windows
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Test Bootstrap
uses: "./.github/actions/testboot"
with:
hostos: 'nt'
owversion: '1.9'
owdebug: ${{ vars.OWDEBUG }}
bootow20-nt:
needs: start-start
name: Test OW 2.0 Bootstrap Windows
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Test Bootstrap
uses: "./.github/actions/testboot"
with:
hostos: 'nt'
owversion: '2.0'
owtag: '2023-01-01-Build'
owdebug: ${{ vars.OWDEBUG }}
workflow-lnx:
needs:
- bootow19-lnx
- bootow20-lnx
name: Linux
strategy:
matrix:
include:
- owtools: 'GCC'
tools: 'gcc'
- owtools: 'CLANG'
tools: 'clang'
uses: "./.github/workflows/cibldlnx.yml"
with:
arch: 'x64'
tools: ${{ matrix.tools }}
owtools: ${{ matrix.owtools }}
image: 'ubuntu-latest'
owdebug: ${{ vars.OWDEBUG }}
workflow-nt:
needs:
- bootow19-nt
- bootow20-nt
name: Windows
strategy:
matrix:
include:
- owtools: 'VISUALC'
tools: 'vs2022'
uses: "./.github/workflows/cibldnt.yml"
with:
arch: 'x64'
tools: ${{ matrix.tools }}
owtools: ${{ matrix.owtools }}
image: 'windows-2022'
owdebug: ${{ vars.OWDEBUG }}
workflow-osx:
needs: start-start
name: OSX
strategy:
matrix:
include:
- owtools: 'CLANG'
arch: 'x64'
image: 'macos-13'
relpath: 'rel bino64'
- owtools: 'CLANG'
arch: 'a64'
image: 'macos-14'
relpath: 'rel armo64'
uses: "./.github/workflows/cibldosx.yml"
with:
arch: ${{ matrix.arch }}
tools: 'clang'
relpath: ${{ matrix.relpath }}
owtools: ${{ matrix.owtools }}
image: ${{ matrix.image }}
owdebug: ${{ vars.OWDEBUG }}
snapshot-both:
needs:
- workflow-lnx
- workflow-nt
- workflow-osx
name: CI Release
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Load all release files
uses: "./.github/actions/relload"
with:
tools_nt: 'vs2022'
tools_lnx: 'gcc'
tools_osx: 'clang'
owdebug: ${{ vars.OWDEBUG }}
- name: Create OW snapshot
id: owsnapshot
uses: "./.github/actions/snapshot"
with:
hostos: 'lnx'
gitpath: 'rel'
owdebug: ${{ vars.OWDEBUG }}
- if: github.event_name == 'PullRequest'
name: Upload Pull Request owsnapshot
uses: actions/upload-artifact@v4
with:
name: 'owsnapshot'
path: ${{ steps.owsnapshot.outputs.fullname }}
retention-days: 14
overwrite: true
- if: vars.OWDELETEARTIFACTS == 1 && github.event_name == 'PullRequest'
name: Call to delete Pull Request Artifacs
uses: "./.github/actions/artfdelc"
with:
exclude: 'owsnapshot'
owdebug: ${{ vars.OWDEBUG }}
owcurlopts: ${{ vars.OWCURLOPTS }}
- if: github.event_name != 'PullRequest'
name: Upload Last CI Build
uses: "./.github/actions/lastbld"
with:
fullname: ${{ steps.owsnapshot.outputs.fullname }}
owdebug: ${{ vars.OWDEBUG }}
owcurlopts: ${{ vars.OWCURLOPTS }}
- if: vars.OWDELETEARTIFACTS == 1 && github.event_name != 'PullRequest'
name: Call to delete Last CI Build Artifacs
uses: "./.github/actions/artfdelc"
with:
owdebug: ${{ vars.OWDEBUG }}
owcurlopts: ${{ vars.OWCURLOPTS }}