|
71 | 71 | run: dotnet restore |
72 | 72 | - name: Build |
73 | 73 | run: dotnet build --no-restore --configuration release |
| 74 | + |
| 75 | + # - name: Show current directory (debug) |
| 76 | + # run: | |
| 77 | + # echo "Current directory: $(pwd)" |
| 78 | + # - name: Show repo files (debug) |
| 79 | + # if: ${{ matrix.platform == 'ubuntu' }} |
| 80 | + # run: | |
| 81 | + # echo "Repo root: $(pwd)" |
| 82 | + # ls -la |
| 83 | + # echo "List _data:" |
| 84 | + # ls -la Kepware.Api.Test/_data || true |
| 85 | + # echo "List _data/projectLoadSerializeData:" |
| 86 | + # ls -la Kepware.Api.Test/_data/projectLoadSerializeData || true |
| 87 | + |
| 88 | + # - name: Build test project (debug) |
| 89 | + # if: ${{ matrix.platform == 'ubuntu' }} |
| 90 | + # run: dotnet build Kepware.Api.Test/Kepware.Api.Test.csproj -c Release |
| 91 | + |
| 92 | + # - name: Show build output (debug) |
| 93 | + # if: ${{ matrix.platform == 'ubuntu' }} |
| 94 | + # run: ls -la Kepware.Api.Test/bin/Release || true |
| 95 | + |
| 96 | + # - name: Show TFM outputs (debug) |
| 97 | + # if: ${{ matrix.platform == 'ubuntu' }} |
| 98 | + # run: ls -la Kepware.Api.Test/bin/Release/* || true |
| 99 | + |
| 100 | + # - name: Show test _data (debug) |
| 101 | + # if: ${{ matrix.platform == 'ubuntu' }} |
| 102 | + # run: ls -la Kepware.Api.Test/bin/Release/net8.0/_data || true |
| 103 | + # - name: Show test _data/projectLoadSerializeData (debug) |
| 104 | + # if: ${{ matrix.platform == 'ubuntu' }} |
| 105 | + # run: ls -la Kepware.Api.Test/bin/Release/net8.0/_data/projectLoadSerializeData || true |
| 106 | + |
74 | 107 | - name: Test |
75 | 108 | run: dotnet test Kepware.Api.Test/Kepware.Api.Test.csproj --no-build --verbosity normal --configuration Release --logger "trx;LogFilePrefix=${{ matrix.platform }}-test-results" |
76 | 109 | - name: Publish Test Reports (${{ matrix.platform }}) |
|
0 commit comments