Skip to content

Commit

Permalink
int - Rolling out Mono installation step (Ubuntu)
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 c9004c4 commit 68ae44f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build-rel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@ name: Build Project (Release)

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
strategy:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.runs-on }}

steps:
Expand All @@ -23,9 +28,14 @@ jobs:
- name: Solution Compilation (Windows)
if: matrix.runs-on == 'windows-latest'
run: cd tools ; ./build.cmd ; cd ..
- name: Solution Compilation (Unix)
if: matrix.runs-on != 'windows-latest'
- name: Solution Compilation (macOS)
if: matrix.runs-on == 'macos-latest'
run: make
- name: Solution Compilation (Unix)
if: matrix.runs-on == 'ubuntu-latest'
run: |
sudo apt install mono-complete
make
- name: Testing
run: dotnet test --no-build --configuration Release

14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@ name: Build Project (Debug)

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
strategy:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.runs-on }}

steps:
Expand All @@ -23,9 +28,14 @@ jobs:
- name: Solution Compilation (Windows)
if: matrix.runs-on == 'windows-latest'
run: cd tools ; ./build.cmd Debug ; cd ..
- name: Solution Compilation (Unix)
if: matrix.runs-on != 'windows-latest'
- name: Solution Compilation (macOS)
if: matrix.runs-on == 'macos-latest'
run: make dbg
- name: Solution Compilation (Unix)
if: matrix.runs-on == 'ubuntu-latest'
run: |
sudo apt install mono-complete
make dbg
- name: Testing
run: dotnet test --no-build --configuration Debug

0 comments on commit 68ae44f

Please sign in to comment.