forked from open-watcom/open-watcom-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (55 loc) · 1.37 KB
/
rel-osx.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
name: Release-Build-osx
run-name: Release workflow OSX (daily and monthly)
on:
workflow_call:
inputs:
arch:
required: true
type: string
tools:
required: true
type: string
relpath:
required: true
type: string
owtools:
required: true
type: string
image:
required: true
type: string
owdebug:
required: true
type: string
jobs:
boot-osx:
name: Bootstrap
runs-on: ${{ inputs.image }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: Bootstrap
uses: "./.github/actions/boot"
with:
hostos: 'osx'
buildcmd: "ci/buildx.sh ${{ inputs.tools }}"
suffix: "osx ${{ inputs.arch }} ${{ inputs.tools }}"
owtools: ${{ inputs.owtools }}
owdebug: ${{ inputs.owdebug }}
build-osx:
name: Build
needs: boot-osx
runs-on: ${{ inputs.image }}
timeout-minutes: 120
steps:
- name: checkout
uses: actions/checkout@v4
- name: Build
uses: "./.github/actions/build"
with:
hostos: 'osx'
buildcmd: "ci/buildx.sh ${{ inputs.tools }}"
relpath: ${{ inputs.relpath }}
suffix: "osx ${{ inputs.arch }} ${{ inputs.tools }}"
owtools: ${{ inputs.owtools }}
owdebug: ${{ inputs.owdebug }}