Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/stable'
Browse files Browse the repository at this point in the history
To bring the new nuget defaults & the snap testing.

# Conflicts:
#	.github/workflows/CI.yml
  • Loading branch information
knocte committed Jan 28, 2023
2 parents 2c6afb4 + 775267d commit e7cc6e3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,13 @@ jobs:
run: |
./scripts/snap_build.sh
- name: Install snap
# dangerous because it's a local snap (not one from the SnapStore)
run: sudo snap install --dangerous *.snap

- name: Test snap
run: gwallet --version

- uses: actions/upload-artifact@v3
name: Upload snap package as artifact
with:
Expand Down
7 changes: 5 additions & 2 deletions NuGet.Restore.targets
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
<Curl Condition=" '$(OS)' == 'Windows_NT' ">"$(TEMP)\curl.exe" $(CurlArgs)</Curl>
<Curl Condition=" '$(OS)' != 'Windows_NT' ">curl $(CurlArgs)</Curl>
<PowerShell Condition=" '$(PowerShell)' == '' ">%WINDIR%\System32\WindowsPowerShell\v1.0\powershell.exe</PowerShell>
<ContinueOnRestoreError Condition=" '$(ContinueOnRestoreError)' == '' ">ErrorAndContinue</ContinueOnRestoreError>

<!-- see https://learn.microsoft.com/en-us/visualstudio/msbuild/task-element-msbuild -->
<ContinueOnRestoreError Condition=" '$(ContinueOnRestoreError)' == '' ">ErrorAndStop</ContinueOnRestoreError>

<RestoreVerbosity Condition="'$(RestoreVerbosity)' == ''">quiet</RestoreVerbosity>
<RestoreLoggingVerbosity Condition="'$(RestoreLoggingVerbosity)' == ''">normal</RestoreLoggingVerbosity>
<TargetsFile>$(MSBuildThisFilename)$(MSBuildThisFileExtension)</TargetsFile>
Expand All @@ -27,7 +30,7 @@
<ItemDefinitionGroup>
<RestoreSolution>
<Command>Restore</Command>
<Args>-verbosity $(RestoreVerbosity)</Args>
<Args>-verbosity $(RestoreLoggingVerbosity)</Args>
</RestoreSolution>
</ItemDefinitionGroup>

Expand Down

0 comments on commit e7cc6e3

Please sign in to comment.