Skip to content

Commit

Permalink
Remove commented lines
Browse files Browse the repository at this point in the history
  • Loading branch information
dstenroejl committed Dec 18, 2024
1 parent 771ddfb commit b49c1e7
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/ci-dotnet-runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,41 +86,6 @@ jobs:
$matrixBuilds = '${{steps.set-matrix.outputs.matrix_builds}}' | ConvertFrom-Json | ConvertTo-Json
Write-Host $matrixBuilds
# build_tests_in_project:
# name: Build ${{ matrix.project.name }}
# runs-on: ubuntu-24.04 # Build on pinned version of ubuntu
# needs: build_matrix
# strategy:
# fail-fast: false
# matrix:
# project: ${{fromJson(needs.build_matrix.outputs.matrix_builds)}}
# env:
# OUTPUT_PATH: ${{ github.workspace }}/source/${{ matrix.project.name}}/bin/Release/${{matrix.project.dotnet_version}}
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4

# - uses: actions/cache@v4
# with:
# path: ~/.nuget/packages
# key: ${{ inputs.nuget_cache_key_prefix }}-${{ runner.os }}-${{ hashFiles('**/*.csproj') }}

# - name: Build ${{ matrix.project.name }}
# run: |
# dotnet publish \
# '${{ matrix.project.filepath }}' \
# --configuration Release \
# --output '${{ env.OUTPUT_PATH }}' \
# -p:ErrorOnDuplicatePublishOutputFiles=false # To avoid the error "Found multiple publish output files with the same relative path"

# # ls ${{ env.OUTPUT_PATH}}

# - uses: actions/upload-artifact@v4
# with:
# retention-days: 2
# name: pm-tests-${{ matrix.project.name }}-${{ github.event.pull_request.number }}
# path: ${{ env.OUTPUT_PATH }}/*

integration_tests:
if: ${{ needs.build_matrix.outputs.matrix_builds != '[]' }}
needs: [
Expand Down

0 comments on commit b49c1e7

Please sign in to comment.