From d1d4134e601d212817440a88b111214fc194bec2 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Sun, 12 Jan 2025 14:50:52 +0300 Subject: [PATCH] int - Rolling out Mono installation step (Ubuntu) --- Type: int Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- .github/workflows/build-rel.yml | 10 ++++++++-- .github/workflows/build.yml | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-rel.yml b/.github/workflows/build-rel.yml index 5f153ed..5b16170 100644 --- a/.github/workflows/build-rel.yml +++ b/.github/workflows/build-rel.yml @@ -13,6 +13,7 @@ jobs: strategy: matrix: runs-on: [ubuntu-latest, windows-latest, macos-latest] + fail-fast: false runs-on: ${{ matrix.runs-on }} steps: @@ -27,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 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e9fda0d..418768a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,7 @@ jobs: strategy: matrix: runs-on: [ubuntu-latest, windows-latest, macos-latest] + fail-fast: false runs-on: ${{ matrix.runs-on }} steps: @@ -27,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