Skip to content

Commit

Permalink
.Net: Fix bash script to build the dotnet solution (#10003)
Browse files Browse the repository at this point in the history
### Motivation and Context

<!-- Thank you for your contribution to the semantic-kernel repo!
Please help reviewers and future users, providing the following
information:
  1. Why is this change required?
  2. What problem does it solve?
  3. What scenario does it contribute to?
  4. If it fixes an open issue, please link to the issue here.
-->

Small fix for the `build.sh` bash in the dotnet folder to locally build
and test the solution. It was not working as the script was already in
the `dotnet` folder

### Description

<!-- Describe your changes, the overall approach, the underlying design.
These notes will help understanding how your code works. Thanks! -->

Provide another way to navigate to the dotnet folder before triggering
`dotnet build & dotnet test` commands.

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [x] The code builds clean without any errors or warnings
- [x] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [x] All unit tests pass, and I have added new tests where possible
- [x] I didn't break anyone 😄

Co-authored-by: Chris <[email protected]>
  • Loading branch information
jchomarat and crickman authored Jan 8, 2025
1 parent 2a5e51b commit 77c96c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dotnet/build.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

set -e

HERE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/"
cd "$HERE"
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

cd dotnet
pushd "$SCRIPT_DIR" > /dev/null

# Release config triggers also "dotnet format"
dotnet build --configuration Release --interactive

dotnet test --configuration Release --no-build --no-restore --interactive

popd > /dev/null

0 comments on commit 77c96c2

Please sign in to comment.