Skip to content

Commit 0b623f7

Browse files
committed
int - Select platform for compilation step
--- Type: int Breaking: False Doc Required: False Backport Required: False Part: 1/1
1 parent 4a4089b commit 0b623f7

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build-rel.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@ jobs:
2626
- name: Solution Compilation (Windows)
2727
if: matrix.runs-on == 'windows-latest'
2828
run: cd tools ; ./build.cmd ; cd ..
29+
- name: Solution Compilation (macOS)
30+
if: matrix.runs-on == 'macos-latest'
31+
run: make
2932
- name: Solution Compilation (Unix)
30-
if: matrix.runs-on != 'windows-latest'
33+
if: matrix.runs-on == 'ubuntu-latest'
3134
run: |
3235
sudo apt install mono-complete
3336
make

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@ jobs:
2626
- name: Solution Compilation (Windows)
2727
if: matrix.runs-on == 'windows-latest'
2828
run: cd tools ; ./build.cmd Debug ; cd ..
29+
- name: Solution Compilation (macOS)
30+
if: matrix.runs-on == 'macos-latest'
31+
run: make dbg
2932
- name: Solution Compilation (Unix)
30-
if: matrix.runs-on != 'windows-latest'
33+
if: matrix.runs-on == 'ubuntu-latest'
3134
run: |
3235
sudo apt install mono-complete
3336
make dbg

0 commit comments

Comments
 (0)