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 518e81e commit 23228e3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build-rel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ jobs:
strategy:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand All @@ -26,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

11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ jobs:
strategy:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand All @@ -26,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 23228e3

Please sign in to comment.