-
-
Notifications
You must be signed in to change notification settings - Fork 10
112 lines (97 loc) · 2.9 KB
/
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
name: build-all-platforms
on:
push:
pull_request:
branches: [ master ]
workflow_dispatch:
env:
PRJ_NAME: XMidiCtrl
jobs:
# Build Linux with GCC
build-lin:
runs-on: ubuntu-22.04
env:
platform: lin
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Build
uses: ./.github/actions/build-lin
id: build
with:
pluginName: ${{ env.PRJ_NAME }}
- name: Artifact upload
uses: ./.github/actions/plugin-upload
with:
pluginName: ${{ env.PRJ_NAME }}
archFolder: lin_x64
xplFileName: "${{ steps.build.outputs.xpl-file-name }}"
# MacOS with CMake/clang (and sign/notarize)
build-mac:
runs-on: macos-12
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Build
uses: ./.github/actions/build-mac
id: build
with:
pluginName: ${{ env.PRJ_NAME }}
# - name: Check if Secrets available
# id: checksecrets
# env:
# MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
# shell: bash
# run: |
# if [ "$MACOS_CERTIFICATE" == "" ]; then
# echo "secretspresent=" >> $GITHUB_OUTPUT
# else
# echo "secretspresent=true" >> $GITHUB_OUTPUT
# fi
# - name: Codesign and Notarization
# if: ${{ steps.checksecrets.outputs.secretspresent }}
# uses: ./.github/actions/sign-notarize
# with:
# xplFileName: ${{ steps.build.outputs.xpl-file-name }}
# certificate: ${{ secrets.MACOS_CERTIFICATE }}
# certPwd: ${{ secrets.MACOS_CERT_PWD }}
# notarizeUser: ${{ secrets.NOTARIZATION_USERNAME }}
# notarizeTeam: ${{ secrets.NOTARIZATION_TEAM }}
# notarizeAppPwd: ${{ secrets.NOTARIZATION_PASSWORD }}
- name: Upload Artifact
uses: ./.github/actions/plugin-upload
with:
pluginName: ${{ env.PRJ_NAME }}
archFolder: mac_x64
xplFileName: ${{ steps.build.outputs.xpl-file-name }}
# Windows with MS Visual Studio
build-win:
runs-on: windows-2022
env:
platform: win
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Build
uses: ./.github/actions/build-win
id: build
with:
pluginName: ${{ env.PRJ_NAME }}
- name: Upload Artifact
uses: ./.github/actions/plugin-upload
with:
pluginName: ${{ env.PRJ_NAME }}
archFolder: win_x64
xplFileName: "${{ steps.build.outputs.xpl-file-name }}"
# Make an installation package
make-package:
runs-on: ubuntu-22.04
env:
platform: lin
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Make an installation package
uses: ./.github/actions/make-package
with:
pluginName: ${{ env.PRJ_NAME }}