-
Notifications
You must be signed in to change notification settings - Fork 34
45 lines (37 loc) · 1.01 KB
/
build.yaml
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
name: build-binaries
on:
workflow_dispatch:
push:
branches:
- main
- dev/ruby31
- dev/ruby32
- dev/actions
pull_request:
jobs:
windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- name: Build app for release
run: msbuild Build\SURubyDebugger.sln -property:Configuration=Release
- uses: actions/upload-artifact@v3
with:
name: ruby-debugger-win
path: Build/x64/Release/SURubyDebugger.dll
macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build app for release
run: |
cd Build
xcodebuild -scheme SURubyDebugger -configuration Release -derivedDataPath output
- uses: actions/upload-artifact@v3
with:
name: ruby-debugger-mac
path: Build/output/Build/Products/Release/SURubyDebugger.dylib