Skip to content

Commit

Permalink
Fix solution file, add Pin plugin to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
JanWichelmann committed Aug 23, 2021
1 parent 1ec977d commit 7a8df72
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build-microwalk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Install dependencies
run: |
cd Microwalk
dotnet restore
- name: Build
run: |
cd Microwalk
dotnet build --configuration Release --no-restore
dotnet build Microwalk/Microwalk.csproj --configuration Release
dotnet build Microwalk.Plugins.PinTracer/Microwalk.Plugins.PinTracer.csproj --configuration Release
7 changes: 2 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,11 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Install dependencies
run: |
cd Microwalk
dotnet restore
- name: Build & Pack
run: |
cd Microwalk
dotnet publish --configuration Release --no-restore --output publish --no-self-contained
dotnet publish Microwalk/Microwalk.csproj --configuration Release --output publish --no-self-contained
dotnet publish Microwalk.Plugins.PinTracer/Microwalk.Plugins.PinTracer.csproj --configuration Release --output publish --no-self-contained
cd publish
zip -r Microwalk.zip .
- name: Upload asset
Expand Down
2 changes: 1 addition & 1 deletion Microwalk.sln
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Global
{B6C12179-8A77-49F0-96F9-26CD2DA3FDD8}.Release|x64.ActiveCfg = Release|Any CPU
{B6C12179-8A77-49F0-96F9-26CD2DA3FDD8}.Release|x64.Build.0 = Release|Any CPU
{B6C12179-8A77-49F0-96F9-26CD2DA3FDD8}.Release|x86.ActiveCfg = Release|Any CPU
{B6C12179-8A77-49F0-96F9-26CD2DA3FDD8}.Release|x86.Build.0 = Release|Any CPUMicrowalk/TracePreprocessing/Modules/PinTraceDumper.cs
{B6C12179-8A77-49F0-96F9-26CD2DA3FDD8}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 7a8df72

Please sign in to comment.