From a99c6c55a56671925d2f730ca2eb6e1af02d5a58 Mon Sep 17 00:00:00 2001 From: alehandru Date: Fri, 8 Sep 2023 10:11:05 -0700 Subject: [PATCH] removed ga for building --- .github/workflows/build-windows.yml | 76 ----------------------------- 1 file changed, 76 deletions(-) delete mode 100644 .github/workflows/build-windows.yml diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml deleted file mode 100644 index 30c1c2789bb26..0000000000000 --- a/.github/workflows/build-windows.yml +++ /dev/null @@ -1,76 +0,0 @@ -name: Build gRPC for Windows - -on: - push: - branches: ['nh-57056-cpp17'] - - # Inputs for reusable workflow - - workflow_call: - inputs: - logLevel: - description: 'Log level' - required: true - default: 'warning' - type: string - - # Inputs for manually triggered workflow - - workflow_dispatch: - inputs: - logLevel: - description: 'Log level' - required: true - default: 'warning' - -jobs: - build: - strategy: - matrix: - arch: ['32', '64'] - configuration: ['Release', 'Debug'] - fail-fast: false - - runs-on: windows-2022 - - steps: - - name: Set git to use LF - run: | - git config --global core.autocrlf false - git config --global core.eol lf - - - name: 32 bit - set environment variables - if: ${{ matrix.arch == '32' }} - shell: powershell - run: | - echo "PLATFORM=win32" >> $env:GITHUB_ENV - - - name: 64 bit - set environment variables - if: ${{ matrix.arch == '64' }} - shell: powershell - run: | - echo "PLATFORM=x64" >> $env:GITHUB_ENV - - - name: Checkout ${{ github.ref }} - uses: actions/checkout@v3 - - - name: Checkout gRPC repository - uses: actions/checkout@v3 - with: - path: grpc - - - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 - - - name: Build gRPC ${{ matrix.arch }} bit ( ${{ matrix.configuration }} ) - shell: cmd - run: | - cd ${{ github.workspace }}/grpc/build_windows_${{ matrix.arch}} - msbuild.exe -maxcpucount /t:Clean,Build /m /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ env.PLATFORM }} /fl /flp:logfile=build-${{ matrix.arch }}.${{ matrix.configuration }}.log;verbosity=diagnostic grpc.sln - - working-directory: ${{ github.workspace }} - env: - WORKSPACE: ${{ github.workspace }} - MSBUILD_COMMAND: msbuild.exe - -