Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating libLLVM to use the new 8.0.0 package. #103

Merged
merged 4 commits into from Jun 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions Directory.Build.targets
Expand Up @@ -15,8 +15,14 @@
<DefineConstants>$(DefineConstants);$(OS)</DefineConstants>
</PropertyGroup>

<!-- Settings that allow testing to work by default -->
<PropertyGroup>
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == ''">$(NETCoreSdkRuntimeIdentifier)</RuntimeIdentifier>
</PropertyGroup>

<!-- Package versions for package references across all projects -->
<ItemGroup>
<PackageReference Update="libLLVM" Version="8.0.0" />
<PackageReference Update="Microsoft.Net.Compilers.Toolset" Version="3.2.0-beta1-final" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.1.1" />
<PackageReference Update="NUnit" Version="3.12.0" />
Expand Down
26 changes: 26 additions & 0 deletions scripts/azure-pipelines.yml
Expand Up @@ -52,6 +52,8 @@ jobs:
- job: ubuntu_1604_debug_x64
pool:
name: Hosted Ubuntu 1604
variables:
RuntimeIdentifier: ubuntu.16.04-x64
steps:
- task: Bash@3
displayName: 'Run scripts/cibuild.sh'
Expand All @@ -63,6 +65,30 @@ jobs:
- job: ubuntu_1604_release_x64
pool:
name: Hosted Ubuntu 1604
variables:
RuntimeIdentifier: ubuntu.16.04-x64
steps:
- task: Bash@3
displayName: 'Run scripts/cibuild.sh'
inputs:
targetType: filePath
filePath: ./scripts/cibuild.sh
arguments: '--configuration Release --architecture x64'

- job: macos_1014_debug_x64
pool:
name: Hosted macOS
steps:
- task: Bash@3
displayName: 'Run scripts/cibuild.sh'
inputs:
targetType: filePath
filePath: ./scripts/cibuild.sh
arguments: '--configuration Debug --architecture x64'

- job: macos_1014_release_x64
pool:
name: Hosted macOS
steps:
- task: Bash@3
displayName: 'Run scripts/cibuild.sh'
Expand Down
2 changes: 1 addition & 1 deletion sources/LLVMSharp/LLVMSharp.csproj
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="libLLVM" Version="7.0.1" NoWarn="NU1701" PrivateAssets="all" />
<PackageReference Include="libLLVM" />
</ItemGroup>

</Project>
4 changes: 0 additions & 4 deletions tests/LLVMSharp.UnitTests/LLVMSharp.UnitTests.csproj
Expand Up @@ -5,10 +5,6 @@
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="libLLVM" Version="5.0.1" NoWarn="NU1701" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\sources\LLVMSharp\LLVMSharp.csproj" />
</ItemGroup>
Expand Down