forked from open-watcom/open-watcom-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
96 lines (96 loc) · 2.46 KB
/
rel-nt.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
name: Release-Build-nt
run-name: Release workflow Windows (daily and monthly)
on:
workflow_call:
inputs:
arch:
required: true
type: string
tools:
required: true
type: string
owtools:
required: true
type: string
image:
required: true
type: string
owdebug:
required: true
type: string
jobs:
boot-nt:
name: Bootstrap
runs-on: ${{ inputs.image }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: Bootstrap
uses: "./.github/actions/boot"
with:
hostos: 'nt'
buildcmd: "ci/buildx.cmd ${{ inputs.tools }}"
suffix: "nt ${{ inputs.arch }} ${{ inputs.tools }}"
owtools: ${{ inputs.owtools }}
owdebug: ${{ inputs.owdebug }}
build-nt:
needs: boot-nt
name: Build
runs-on: ${{ inputs.image }}
timeout-minutes: 120
steps:
- name: checkout
uses: actions/checkout@v4
- name: Build
uses: "./.github/actions/build"
with:
hostos: 'nt'
buildcmd: "ci/buildx.cmd ${{ inputs.tools }}"
suffix: "nt ${{ inputs.arch }} ${{ inputs.tools }}"
owtools: ${{ inputs.owtools }}
owdebug: ${{ inputs.owdebug }}
docsbuild:
needs: boot-nt
name: Documentation
runs-on: ${{ inputs.image }}
timeout-minutes: 90
strategy:
matrix:
include:
- title: DOS
doctype: docdos
- title: OS/2
doctype: docos2
- title: NT
doctype: docnt
- title: CHM
doctype: docchm
- title: PDF
doctype: docpdf
- title: WIN
doctype: docwin
steps:
- name: checkout
uses: actions/checkout@v4
- name: Documentation
uses: "./.github/actions/docbuild"
with:
hostos: 'nt'
buildcmd: "ci/buildx.cmd ${{ inputs.tools }}"
target: ${{ matrix.doctype }}
suffixi: "nt ${{ inputs.arch }} ${{ inputs.tools }}"
suffixo: "${{ matrix.doctype }} ${{ inputs.tools }}"
owtools: ${{ inputs.owtools }}
owdebug: ${{ inputs.owdebug }}
tests-nt:
needs: build-nt
name: Tests
runs-on: ${{ inputs.image }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: Tests
uses: "./.github/actions/tests"
with:
hostos: 'nt'
suffix: "nt ${{ inputs.arch }} ${{ inputs.tools }}"