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

DO NOT MERGE! Github Actions build + annotations test #3371

Closed
wants to merge 34 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
df1134b
test: Build into `dist/` folder
AlanRynne May 6, 2024
af7a134
test: Only do so on CI
AlanRynne May 6, 2024
2cc5d97
test: Zipping output to dist/zip
AlanRynne May 6, 2024
7e3d429
test: Super simple github action
AlanRynne May 6, 2024
eb67ea7
test: dotnet msbuild
AlanRynne May 6, 2024
0b71b88
test: Just speeding it up by skipping steps 🙂
AlanRynne May 6, 2024
e38b7f8
test: Too much
AlanRynne May 6, 2024
7b1abff
temp: Silence Core and Objects warnings in CI for now
AlanRynne May 7, 2024
aded3d5
fix: Do only on CI
AlanRynne May 7, 2024
d2d635a
test warn as error in github
AlanRynne May 7, 2024
b9cbe51
test: GitVersion this thing!
AlanRynne May 8, 2024
228e26f
fix: Dotnet-version
AlanRynne May 8, 2024
55bf0bd
fetch depth of 0
AlanRynne May 8, 2024
72a14ca
fix: Removed invalid configurations
AlanRynne May 8, 2024
6f6e26f
fix long restore?
AlanRynne May 8, 2024
aa076df
just archive the entire zip folder
AlanRynne May 8, 2024
7a19ac6
use normal nuget?
AlanRynne May 8, 2024
f1d9fc8
restore all.sln
AlanRynne May 8, 2024
dc73ade
Merge branch 'dui3/alpha' into dui3/ci/github-actions-test
AlanRynne May 8, 2024
14b1888
use msbuild restore?
AlanRynne May 8, 2024
d68d3ce
teaks to target
AlanRynne May 8, 2024
5db7226
no zipping
AlanRynne May 8, 2024
8eb0471
restore using lock files test
AlanRynne May 8, 2024
e8d5efb
minor tweaks
AlanRynne May 8, 2024
c0757a3
match to fallback key if nuget cache is not found
AlanRynne May 8, 2024
bb0cd46
run restore in lock mode, don't skip
AlanRynne May 8, 2024
4f32553
update gitversion and lock files
AlanRynne May 8, 2024
1be25c5
fix: update lock files
AlanRynne May 8, 2024
713c713
no gitversion 🥲
AlanRynne May 8, 2024
623cf71
even less :D
AlanRynne May 8, 2024
f8df726
no cache and use global.json
AlanRynne May 8, 2024
6bf6d8a
rel path
AlanRynne May 8, 2024
45011c8
AlanRynne May 8, 2024
bf9b554
🔓
AlanRynne May 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
teaks to target
AlanRynne committed May 8, 2024
commit d68d3ce4ac66164bf6d0d5e0071d7d055eab8920
13 changes: 6 additions & 7 deletions DUI3-DX/Connectors/Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -8,23 +8,22 @@
<Error Text="ConnectorVersion property is not set" Condition=" '$(ConnectorVersion)' == '' " />

<PropertyGroup>
<OutputDirectory>$(RepositoryRoot)/dist/$(ConnectorSlug)/$(ConnectorVersion)</OutputDirectory>
<OutputZipDirectory>$(RepositoryRoot)/dist/zip</OutputZipDirectory>
<OutputDirectory>$(RepositoryRoot)dist/$(ConnectorSlug)/$(ConnectorVersion)/</OutputDirectory>
<OutputZipDirectory>$(RepositoryRoot)dist/zip/</OutputZipDirectory>
<OutputZipFile>$(ConnectorSlug)-$(ConnectorVersion)-$(Version).zip</OutputZipFile>
</PropertyGroup>

<RemoveDir Directories="$(OutputDirectory)" ContinueOnError="true" />
<RemoveDir Directories="$(OutputZipDirectory)" ContinueOnError="true"/>
<RemoveDir Directories="$(OutputDirectory)"/>
<MakeDir Directories="$(OutputDirectory)"/>
<MakeDir Directories="$(OutputZipDirectory)"/>
<MakeDir Directories="$(OutputZipDirectory)" ContinueOnError="true"/>

<ItemGroup>
<DllFiles Include="$(OutDir)**/*.*"/>
</ItemGroup>

<Copy SourceFiles="@(DllFiles)" DestinationFolder="$(OutputDirectory)/%(RecursiveDir)"/>
<Copy SourceFiles="@(DllFiles)" DestinationFolder="$(OutputDirectory)%(RecursiveDir)" />

<ZipDirectory SourceDirectory="$(OutputDirectory)" DestinationFile="$(OutputZipDirectory)/$(OutputZipFile)" Overwrite="true"/>
<ZipDirectory SourceDirectory="$(OutputDirectory)" DestinationFile="$(OutputZipDirectory)$(OutputZipFile)" Overwrite="true"/>

</Target>
</Project>