Skip to content

Commit

Permalink
int - Select platform for compilation step
Browse files Browse the repository at this point in the history
---

Type: int
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Jan 12, 2025
1 parent 4a4089b commit 0b623f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build-rel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ jobs:
- name: Solution Compilation (Windows)
if: matrix.runs-on == 'windows-latest'
run: cd tools ; ./build.cmd ; cd ..
- name: Solution Compilation (macOS)
if: matrix.runs-on == 'macos-latest'
run: make
- name: Solution Compilation (Unix)
if: matrix.runs-on != 'windows-latest'
if: matrix.runs-on == 'ubuntu-latest'
run: |
sudo apt install mono-complete
make
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ jobs:
- name: Solution Compilation (Windows)
if: matrix.runs-on == 'windows-latest'
run: cd tools ; ./build.cmd Debug ; cd ..
- name: Solution Compilation (macOS)
if: matrix.runs-on == 'macos-latest'
run: make dbg
- name: Solution Compilation (Unix)
if: matrix.runs-on != 'windows-latest'
if: matrix.runs-on == 'ubuntu-latest'
run: |
sudo apt install mono-complete
make dbg
Expand Down

0 comments on commit 0b623f7

Please sign in to comment.