From 018297e4a98c21042a1cfa1a97e5f977cd15baf1 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Mon, 16 Dec 2024 22:32:00 +0300 Subject: [PATCH] chg - Removed extraneous scripts --- Type: chg Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- .github/workflows/build-rel.yml | 30 ------------------------------ .github/workflows/build.yml | 30 ------------------------------ 2 files changed, 60 deletions(-) delete mode 100644 .github/workflows/build-rel.yml delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build-rel.yml b/.github/workflows/build-rel.yml deleted file mode 100644 index 4a1108b..0000000 --- a/.github/workflows/build-rel.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build Project (Release) - -on: - push: - pull_request: - -jobs: - build: - strategy: - matrix: - runs-on: [ubuntu-latest, windows-latest, macos-latest] - runs-on: ${{ matrix.runs-on }} - - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ github.ref }} - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: '8.0.x' - - 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' - run: make - - name: Testing - run: dotnet test --no-build --configuration Release - diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index aee738a..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build Project (Debug) - -on: - push: - pull_request: - -jobs: - build: - strategy: - matrix: - runs-on: [ubuntu-latest, windows-latest, macos-latest] - runs-on: ${{ matrix.runs-on }} - - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ github.ref }} - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: '8.0.x' - - 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' - run: make dbg - - name: Testing - run: dotnet test --no-build --configuration Debug -