mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-01-18 12:36:44 +00:00
Merge pull request #409 from rosenbjerg/chore/deterministic-dotnet-builds
Deterministic .NET builds
This commit is contained in:
commit
8656a86c47
2 changed files with 21 additions and 5 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
@ -3,19 +3,25 @@ name: CI
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
paths:
|
||||
- .github/workflows/ci.yml
|
||||
- Directory.Build.props
|
||||
- FFMpegCore/**
|
||||
- FFMpegCore.Test/**
|
||||
- FFMpegCore.Extensions.SkiaSharp/**
|
||||
- FFMpegCore.Extensions.System.Drawing.Common/**
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
- release
|
||||
paths:
|
||||
- .github/workflows/ci.yml
|
||||
- Directory.Build.props
|
||||
- FFMpegCore/**
|
||||
- FFMpegCore.Test/**
|
||||
- FFMpegCore.Extensions.SkiaSharp/**
|
||||
- FFMpegCore.Extensions.System.Drawing.Common/**
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
|
@ -47,8 +53,9 @@ jobs:
|
|||
|
||||
- if: matrix.os == 'windows-latest'
|
||||
name: Upload coverage reports to Codecov
|
||||
uses: codecov/codecov-action@v5
|
||||
uses: codecov/codecov-action@v4
|
||||
with:
|
||||
fail_ci_if_error: true
|
||||
directory: FFMpegCore.Test/TestResults
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
os: windows
|
||||
|
|
|
@ -13,5 +13,14 @@
|
|||
<PackageProjectUrl>https://github.com/rosenbjerg/FFMpegCore</PackageProjectUrl>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<NeutralLanguage>en</NeutralLanguage>
|
||||
|
||||
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
||||
<IncludeSymbols>true</IncludeSymbols>
|
||||
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||||
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
||||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
||||
</PropertyGroup>
|
||||
</Project>
|
Loading…
Reference in a new issue