Skip to content

Commit fb00e53

Browse files
Make integrity tests optional
1 parent 1d2321b commit fb00e53

4 files changed

Lines changed: 2 additions & 18 deletions

File tree

.github/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,8 @@ I have also published a series of articles about the DSInternals module on [my b
159159
This project utilizes the following 3<sup>rd</sup> party copyrighted material:
160160

161161
- [ManagedEsent](https://github.com/Microsoft/ManagedEsent) - Provides managed access to esent.dll, the embeddable database engine native to Windows.
162-
- [NDceRpc](https://github.com/OpenSharp/NDceRpc) - Integration of WCF and .NET with MS-RPC and binary serialization.
163162
- [PBKDF2.NET](https://github.com/therealmagicmike/PBKDF2.NET) - Provides PBKDF2 for .NET Framework.
164163
- [Bouncy Castle](https://www.bouncycastle.org/csharp/index.html) - A lightweight cryptography API for Java and C#.
165-
- [Peter O. CBOR](https://github.com/peteroupc/CBOR) - A C# implementation of Concise Binary Object Representation (RFC 7049).
166164

167165
## Related Projects
168166

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ jobs:
278278
run: ./Invoke-SmokeTests.ps1 -Configuration 'Release'
279279

280280
- name: Test Module Digital Signatures
281+
if: ${{ inputs.certificate_sign }}
281282
shell: powershell
282283
run: ./Build/bin/DSInternals.PowerShell/Release/DSInternals/Integrity.Tests.ps1
283284

Src/DSInternals.PowerShell/Integrity.Tests.ps1

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,7 @@ Describe 'DSInternals PowerShell Module Integrity' {
111111
param([string] $FileName, [string] $FilePath)
112112

113113
# These 3rd-party files are not signed, so we will skip them.
114-
[string[]] $unsignedFiles = @(
115-
'CBOR.dll',
116-
'Numbers.dll',
117-
'URIUtility.dll'
118-
)
114+
[string[]] $unsignedFiles = @()
119115

120116
if ($FileName -in $unsignedFiles) {
121117
Set-ItResult -Skipped -Because 'this file is not signed by its vendor.'

Src/DSInternals.PowerShell/License.txt

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5757
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
5858
SOFTWARE.
5959

60-
----------------------------------------------------------------------
61-
NDceRpc (.NET Distributed Computing Environment Remote Procedure Call)
62-
----------------------------------------------------------------------
63-
64-
(License updated on 7/7/2019 from https://raw.githubusercontent.com/OpenSharp/NDceRpc/master/license.txt.)
65-
66-
CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
67-
http://creativecommons.org/publicdomain/zero/1.0/
68-
69-
Other codes, if any used, are under MIT, CPOL, BSD, Apache, MS-PL.
70-
7160
----------
7261
PBKDF2.NET
7362
----------

0 commit comments

Comments
 (0)