Skip to content

Commit

Permalink
Merge branch 'hotfix/8.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Nov 17, 2022
2 parents 43c382f + 51f7fc9 commit ac66ffb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/IKVM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,17 @@ jobs:
with:
fetch-depth: 0
submodules: recursive
- name: Setup .NET
shell: pwsh
run: Add-Content $env:GITHUB_ENV "`nDOTNET_INSTALL_DIR=${{ runner.temp }}\dotnet"
- name: Setup .NET 3.1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
Expand All @@ -134,17 +145,6 @@ jobs:
additional-packages:
gcc
g++
- name: Setup .NET
shell: pwsh
run: Add-Content $env:GITHUB_ENV "`nDOTNET_INSTALL_DIR=${{ runner.temp }}\dotnet"
- name: Setup .NET 3.1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Move Temporary Directory
shell: pwsh
run: Add-Content $env:GITHUB_ENV "`nTMP=${{ runner.temp }}`nTEMP=${{ runner.temp }}`nTMPDIR=${{ runner.temp }}"
Expand Down Expand Up @@ -396,6 +396,10 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
Expand Down
3 changes: 2 additions & 1 deletion src/IKVM.Image/IKVM.Image.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
<!-- openjdk contents -->
<None Include="@(OpenJdkImageContent)">
<Pack>true</Pack>
<PackagePath>$([System.IO.Path]::GetDirectoryName('ikvm\any\any\%(ImagePath)'))</PackagePath>
<PackagePath>ikvm\any\any\%(ImagePath)</PackagePath>
<PackagePath Condition="!$([System.IO.Path]::HasExtension('%(ImagePath)'))">$([System.IO.Path]::GetDirectoryName('ikvm\any\any\%(ImagePath)'))</PackagePath>
<Link>ikvm\any\any\%(ImagePath)</Link>
</None>
</ItemGroup>
Expand Down

0 comments on commit ac66ffb

Please sign in to comment.